/* ============================================
   SerTravel Canonical Header/Footer Stylesheet
   Generated: 2026-04-29
   Source: index.html (Type A canonical template)
   ============================================ */

:root {
            --primary: #00c9a2;
            /* Verde turquesa - brand book */
            --primary-dark: #00a381;
            --primary-light: #8eedda;
            /* Azul cielo - brand book */
            --dark: #002d24;
            /* Verde petróleo - prestigio */
            --dark-alt: #012e35;
            /* Azul petróleo - sofisticación */
            --light: #f4f9f8;
            --gold: #f0c040;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 45, 36, 0.08);
            --shadow-lg: 0 8px 40px rgba(0, 45, 36, 0.15);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        /* ========== UTILITY ========== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        .lang-en {
            display: none;
        }

        .lang-fr { display: none; }
        .lang-es {
            display: none;
        }

        .lang-pt {
            display: none;
        }

        /* Language pill switcher */
        .lang-switcher {
            display: flex;
            gap: 6px;
            align-items: center;
        }

        .lang-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.25);
            background: transparent;
            color: rgba(255,255,255,0.65);
            transition: all 0.25s ease;
            letter-spacing: 0.5px;
            user-select: none;
        }

        .lang-pill:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .lang-pill.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--dark);
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            background: var(--dark-alt);
            color: var(--white);
            padding: 8px 0;
            font-size: 13px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .top-bar a {
            color: rgba(255, 255, 255, 0.85);
            transition: var(--transition);
        }

        .top-bar a:hover {
            color: var(--primary);
        }

        .lang-flags {
            display: flex;
            gap: 8px;
            cursor: pointer;
        }

        .lang-flags span {
            font-size: 20px;
            opacity: 0.7;
            transition: var(--transition);
        }

        .lang-flags span:hover,
        .lang-flags span.active {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            font-size: 14px;
        }

        /* ========== HEADER ========== */
        .header {
            background: var(--dark);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 26px;
            font-weight: 700;
            color: var(--white);
        }

        .logo svg {
            height: 42px;
            width: auto;
        }

        .logo-text {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-style: italic;
            letter-spacing: -0.5px;
        }

        .logo-text .ser {
            color: var(--primary);
        }

        .logo-text .travel {
            color: var(--white);
            font-weight: 400;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav a {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav a:hover {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--primary) !important;
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600 !important;
        }

        .nav-cta:hover {
            background: var(--primary-dark) !important;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--white);
        }

/* ========== FOOTER ========== */
        .footer {
            background: var(--dark-alt);
            color: rgba(255, 255, 255, 0.85);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .footer h4 {
            color: var(--white);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .iatan-badge {
            display: inline-flex;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            background: white;
            border-radius: 8px;
            padding: 8px 14px;
            margin-top: 14px;
        }

        .iatan-badge img {
            height: 40px;
            width: auto;
            display: block;
        }

        .iatan-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .iatan-fst {
            font-size: 0.8rem;
            font-weight: 700;
            color: #003d2e;
            letter-spacing: 0.5px;
        }

        .iatan-label {
            font-size: 0.7rem;
            color: #555;
        }

        

@media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 8px;
            }

            .nav {
                display: none;
            }

            .nav.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: var(--dark);
                padding: 24px;
                box-shadow: var(--shadow-lg);
                z-index: 99;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                height: 70vh;
                min-height: 450px;
            }

            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
            }

            .stat {
                border-right: none;
                padding: 0 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .promos-grid {
                grid-template-columns: 1fr;
            }

            .cruises-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cruise-card {
                height: 260px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .section {
                padding: 48px 0;
            }
        }
