@charset "utf-8";

/* NAVEGACIÓN FIJA */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: black;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.navbar-brand {
    font-family: "myriad-pro", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFF;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #ccc;
    transition: color 400ms ease 0s;
}

/* NAVEGACIÓN DESKTOP */
.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.navbar-nav a {
    font-family: acumin-pro-wide, sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFF;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 400ms ease 0s;
}

.navbar-nav a:hover {
    color: #ccc;
}

.navbar-nav a.active {
    font-weight: 600;
    border-bottom: 2px solid #FFF;
}

/* MENÚ HAMBURGUESA */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: #FFF;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* MENÚ MÓVIL */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #ddd;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 20px;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    font-family: acumin-pro-wide, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
    color: #ccc;
    transition: color 400ms ease 0s;
}

.mobile-menu a.active {
    font-weight: 600;
}

.separator {
	text-align: center;
}

.footer {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
}
.footer .listado {
	-webkit-column-count: 1;
    -moz-column-count: 1;
	column-count: 1;
}
.instagram .fab, .instagram-inline .fab {
	font-size: 14px;
	padding: 2px;
	color: black;
}

.instagram a {
	text-decoration: none;
	cursor: pointer;
	color: black;
	display: block;
	padding-left: 0px;
}
a.instagram-inline {
	text-decoration: none;
	cursor: pointer;
	color: black;
}
.fab {
	font-size: 24px;
	padding: 10px;
	color: black;
}
.fab:hover {
	transition: color 400ms ease 0s;
	color: #ccc;
}

/* RESPONSIVE: Móvil (hasta 767px) */
@media only screen and (max-width: 767px) {
    .navbar-nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

	.separator img {
		width: 100%;
	}

}

/* RESPONSIVE: Desktop (768px en adelante) */
@media only screen and (min-width: 768px) {
    .navbar-nav {
        display: flex !important;
    }

    .hamburger {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

	.separator img {
		width: 100%;
	}

}