.logo-brand {
    font-family: "breakers", sans-serif !important;
    font-weight: 900 !important;
    font-style: normal;
    font-size: clamp(2rem, 5vw, 8rem);
    margin-bottom: 0.5rem;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* --- TIPOGRAFÍA Y JERARQUÍA --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
}

.hero-title {
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
    letter-spacing: -3px;
}

/* --- MENÚ CIRCULAR ORIGINAL --- */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: black;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at 95% 5%);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
    clip-path: circle(150% at 95% 5%);
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1001;
    /* Ensure it's above menu content */
}

.close-btn:hover {
    background: white;
    color: black;
    transform: rotate(90deg);
    border-color: white;
}

.menu-link {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    transition: 0.4s;
}

.menu-link:hover {
    color: #c5a47e;
    font-style: italic;
}

/* --- BOTONES DEFORMABLES --- */
.nav-blob {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.nav-blob:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

/* --- RESPONSIVIDAD TABLETAS --- */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 6rem);
    }
}

/* --- FORMULARIO EDITORIAL --- */
.form-input-editorial {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 0;
    color: white;
    width: 100%;
    outline: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Slider Track */
.slider-track {
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-logo {
    height: 30px;
    opacity: 0.3;
    filter: grayscale(1);
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1.5s;
    filter: brightness(0.4);
}

.slide.active {
    opacity: 1;
}

/* --- WHATSAPP WIDGET TRANSITION --- */
.wa-widget {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.wa-widget.wa-hidden {
    transform: translateX(-200%);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}