/* =====================================================
   ZEUS - COMPONENTS
   Navbar, Footer, Buttons, Cards
   ===================================================== */

/* =====================================================
   BUTTONS - Premium Design
   ===================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background-color: transparent;
    border: 2px solid var(--canela);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--canela), var(--canela-light));
    transition: width 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(173, 115, 50, 0.3);
    border-color: var(--canela);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--canela);
    outline-offset: 3px;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* CTA Button - Ultra Premium Gradient with Shimmer */
/* CTA Button - Clean & Elegant Premium */
/* CTA Button - Premium Gold Theme */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--canela);
    border: 1px solid var(--canela);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(173, 115, 50, 0.25);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--canela-dark);
    transition: width 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-cta:hover {
    border-color: var(--canela-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(173, 115, 50, 0.35);
}

.btn-cta:focus-visible {
    outline: 2px solid var(--canela-light);
    outline-offset: 3px;
}

.btn-cta:active {
    transform: translateY(0) scale(0.98);
}

.btn-cta:hover::before {
    width: 100%;
}

/* =====================================================
   NAVBAR - Compact Premium & Visual
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    padding-top: calc(20px + var(--safe-top));
    padding-left: calc(20px + var(--safe-left));
    padding-right: calc(20px + var(--safe-right));
    /* Compact base padding */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #F2E8DC;
    border-bottom: 1px solid rgba(173, 115, 50, 0.08);
}

@media (min-width: 768px) {
    .navbar {
        padding: 24px 60px;
    }
}

.navbar.scrolled {
    padding: 12px 20px;
    padding-top: calc(12px + var(--safe-top));
    padding-left: calc(20px + var(--safe-left));
    padding-right: calc(20px + var(--safe-right));
    /* Ultra compact when scrolled */
    background: rgba(242, 232, 220, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(173, 115, 50, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .navbar.scrolled {
        padding: 12px 60px;
    }
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 32px;
}

.navbar-logo {
    flex-shrink: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 45px;
    /* Compact logo */
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.navbar-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(173, 115, 50, 0.15));
}

@media (min-width: 768px) {
    .navbar-logo img {
        height: 55px;
    }
}

.navbar.scrolled .navbar-logo img {
    height: 40px;
    /* Even smaller on scroll */
}

@media (min-width: 768px) {
    .navbar.scrolled .navbar-logo img {
        height: 45px;
    }
}

.navbar-menu {
    display: none;
    gap: 40px;
    /* More space for visual clarity */
    align-items: center;
}

@media (min-width: 1024px) {
    .navbar-menu {
        display: flex;
    }
}

/* Navbar Links - Visual & Bold */
.navbar-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-main);
    position: relative;
    padding: 10px 0;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Montserrat', sans-serif;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--canela);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-link:hover {
    color: var(--canela);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-link:focus-visible {
    outline: 2px solid var(--canela);
    outline-offset: 4px;
    border-radius: 2px;
}

.navbar-link.active {
    color: var(--canela);
}

.navbar-link.active::after {
    width: 100%;
}

/* Hide CTA on mobile, show on desktop */
.navbar .btn-cta {
    display: none;
}

@media (min-width: 1024px) {
    .navbar .btn-cta {
        display: inline-flex;
        padding: 12px 28px;
        /* Compact button */
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.15em;
    }
}

/* =====================================================
   MOBILE MENU TOGGLE - Animated Hamburger
   ===================================================== */

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(173, 115, 50, 0.08);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    padding: 10px;
    gap: 5px;
}

.menu-toggle:hover {
    background: rgba(173, 115, 50, 0.15);
}

.menu-toggle:active {
    transform: scale(0.95);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--canela);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

.menu-toggle.active {
    background: var(--canela);
}

.menu-toggle.active span {
    background-color: var(--cream-light);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* =====================================================
   MOBILE MENU - Premium Slide Panel
   ===================================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 40px 60px;
    padding-top: calc(100px + var(--safe-top));
    padding-bottom: calc(60px + var(--safe-bottom));
    padding-left: calc(40px + var(--safe-left));
    padding-right: calc(40px + var(--safe-right));
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 24px;
    /* Padding lateral extra para un touch target más amplio */
    min-height: 48px;
    /* Mínimo táctil recomendado */
    display: flex;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--canela-light), var(--canela));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.mobile-menu a:hover {
    color: var(--canela);
}

.mobile-menu a:hover::after {
    width: 80%;
}

.mobile-menu .btn-cta-mobile {
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--canela), var(--canela-dark));
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(173, 115, 50, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    /* Override .navbar .btn-cta display:none */
}

.mobile-menu.active .btn-cta-mobile {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.mobile-menu .btn-cta-mobile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(173, 115, 50, 0.4);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Force-hide mobile menu on desktop — prevents stuck menu on resize */
@media (min-width: 1024px) {

    .mobile-menu,
    .mobile-menu.active {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .mobile-overlay,
    .mobile-overlay.active {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */

/* =====================================================
   FOOTER - "Finito" & Premium
   ===================================================== */

/* =====================================================
   FOOTER - "Finito" & Premium
   ===================================================== */

.footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    padding-bottom: calc(var(--spacing-lg) + var(--safe-bottom));
    padding-left: calc(var(--spacing-md) + var(--safe-left));
    padding-right: calc(var(--spacing-md) + var(--safe-right));
    position: relative;
}

/* Premium Gradient Top Border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(173, 115, 50, 0.3) 50%,
            rgba(255, 255, 255, 0.02) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
        gap: 40px;
    }
}

.footer-logo {
    height: 36px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer h4 {
    font-family: 'Cormorant Garamond', serif;
    /* Premium Serif */
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--canela);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--canela);
    padding-left: 8px;
    /* Elegant slide */
    text-shadow: 0 0 10px rgba(173, 115, 50, 0.3);
}

/* Contact Info */
.footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer .text-xl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icon svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.social-icon:hover {
    border-color: var(--canela);
    background: rgba(173, 115, 50, 0.1);
    color: var(--canela);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:focus-visible {
    outline: 2px solid var(--canela);
    outline-offset: 2px;
}

.social-icon:active {
    transform: translateY(-1px) scale(0.95);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Map - Clean & Framed */
.footer-map iframe {
    width: 100%;
    height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    filter: grayscale(100%) invert(92%) contrast(0.85);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.footer-map iframe:hover {
    opacity: 1;
    border-color: rgba(173, 115, 50, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.03em;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.legal-links a:hover {
    color: var(--canela);
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--canela);
    transition: width 0.3s ease;
}

.legal-links a:hover::after {
    width: 100%;
}

/* =========================================
   GENERAL FAQ Section
   ========================================= */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 80px 0 20px;
    width: 100%;
    margin: 0;
    background: #E4D7C8;
}

.separator-line {
    height: 10px;
    flex-grow: 1;
    max-width: 1000px;
    border-radius: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--canela) 10%, var(--canela) 90%, transparent 100%);
    box-shadow: 0 0 25px rgba(173, 115, 50, 0.5);
}

.separator-icon {
    color: #AD7332;
    font-size: 2rem;
    animation: pulse-soft 3s infinite ease-in-out;
    text-shadow: 0 0 15px rgba(173, 115, 50, 0.4);
}

@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.general-faq-section {
    padding: 80px 24px;
    background: #E4D7C8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 100px rgba(139, 90, 38, 0.1);
}

.general-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.general-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.general-faq-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--canela);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    font-weight: 600;
}

.general-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--text-main);
    font-weight: 400;
}

.general-faq-grid,
.general-faq-item {
    border-top: 1px solid rgba(173, 115, 50, 0.2);
}

.general-faq-item {
    border-bottom: 1px solid rgba(173, 115, 50, 0.2);
}

.general-faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: color 0.25s ease;
}

.general-faq-question span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-main);
    font-weight: 500;
}

.general-faq-question:hover span:first-child {
    color: var(--canela);
}

.general-faq-icon {
    font-size: 1.5rem;
    color: var(--canela);
    transition: transform 0.3s ease;
}

.general-faq-item.active .general-faq-icon {
    transform: rotate(45deg);
}

.general-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.general-faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    padding-bottom: 32px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .general-faq-title {
        font-size: 2.2rem;
    }
}