        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-deep: #2C2C2C;
            --primary-forest: #3A3A3A;
            --primary-moss: #4A4A4A;
            --accent-sage: #D4C5A9;
            --accent-olive: #B8A88A;
            --gold-leaf: #C4A86B;
            --sand-cream: #F5F0E6;
            --pure-white: #FFFFFF;
            --mist: #FAF7F2;
            --text-dark: #1A1A1A;
            --text-soft: #333333;
            --whatsapp: #25D366;
            --facebook: #4267B2;
            --instagram: #C13584;
            --tiktok: #010101;
            --shadow-nature: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
            --shadow-leaf: 0 10px 25px -8px rgba(0, 0, 0, 0.08);
            --border-radius-card: 32px;
            --border-radius-btn: 48px;
            --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pure-white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.pexels.com/photos/158028/bora-bora-french-polynesia-south-pacific-ocean-pacific-ocean-158028.jpeg?auto=compress&cs=tinysrgb&w=1600');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.05;
            pointer-events: none;
            z-index: -2;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(212, 197, 169, 0.03) 0px,
                rgba(212, 197, 169, 0.03) 2px,
                transparent 2px,
                transparent 8px
            );
            pointer-events: none;
            z-index: -1;
        }

        .brand-protect, .slogan-protect {
            display: inline-block;
            position: relative;
            unicode-bidi: isolate;
        }
        
        .brand-protect::before {
            content: attr(data-brand);
            display: inline;
        }
        
        .slogan-protect::before {
            content: attr(data-slogan);
            display: inline;
        }
        
        .brand-protect span.original-text,
        .slogan-protect span.original-text {
            display: none !important;
            font-size: 0 !important;
            line-height: 0 !important;
            opacity: 0 !important;
            position: absolute !important;
            pointer-events: none !important;
            z-index: -9999 !important;
        }
        
        .obfuscate::after {
            content: '\200C\200D\200C\200D';
            display: inline;
            font-size: 0;
            opacity: 0;
            pointer-events: none;
            user-select: none;
        }

        .language-selector {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            padding: 10px 5%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 16px;
            position: sticky;
            top: 0;
            z-index: 1100;
            border-bottom: 1px solid rgba(196, 168, 107, 0.3);
        }

        .lang-btn {
            padding: 10px 28px;
            border-radius: 60px;
            background: rgba(0,0,0,0.03);
            border: 1px solid rgba(196, 168, 107, 0.4);
            color: #2C2C2C;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            backdrop-filter: blur(4px);
        }

        .lang-btn:hover {
            background: var(--gold-leaf);
            color: white;
            border-color: var(--gold-leaf);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
        }

        .lang-btn.active {
            background: var(--gold-leaf);
            color: white;
            border-color: var(--gold-leaf);
            font-weight: 700;
        }

        .top-bar {
            background: var(--pure-white);
            padding: 14px 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(184, 168, 138, 0.3);
        }

        .contact-info a {
            color: var(--primary-forest);
            text-decoration: none;
            margin-right: 32px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 8px 18px;
            border-radius: 50px;
            background: rgba(212, 197, 169, 0.15);
        }

        .contact-info a:hover {
            background: var(--accent-sage);
            color: #1A1A1A;
            transform: translateY(-2px);
            box-shadow: var(--shadow-leaf);
        }

        .contact-info i {
            font-size: 1.2rem;
            color: var(--gold-leaf);
        }

        .social-icons {
            display: flex;
            gap: 16px;
        }

        .social-icons a {
            color: var(--primary-forest);
            font-size: 1.3rem;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(212, 197, 169, 0.15);
            backdrop-filter: blur(4px);
            text-decoration: none;
            border: 1px solid rgba(196,168,107,0.25);
        }

        .social-icons a:hover {
            transform: translateY(-5px) scale(1.05);
            background: var(--gold-leaf);
            color: white;
            border-color: var(--gold-leaf);
        }

        .main-header {
            background: var(--pure-white);
            padding: 48px 5%;
            text-align: center;
            position: relative;
            border-bottom: 1px solid rgba(196,168,107,0.3);
        }
        .main-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        .main-header .slogan {
            font-size: 1.4rem;
            color: var(--accent-olive);
            font-weight: 400;
            letter-spacing: 1px;
        }

        .hero {
            background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url('https://i.imgur.com/EVshL3o.jpeg');
            background-size: cover;
            background-position: center 30%;
            background-attachment: fixed;
            min-height: 620px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 8px 20px rgba(0,0,0,0.3);
            color: white;
        }

        .hero-content p {
            font-size: 1.5rem;
            max-width: 750px;
            margin: 0 auto;
            font-weight: 400;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
            color: #F5F0E6;
        }

        .btn {
            display: inline-block;
            padding: 18px 48px;
            background: linear-gradient(105deg, var(--gold-leaf) 0%, #D4B87A 100%);
            color: white;
            text-decoration: none;
            border-radius: var(--border-radius-btn);
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            border: none;
            box-shadow: 0 12px 24px -12px rgba(0,0,0,0.2);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .btn:hover::after {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 32px -12px rgba(196, 168, 107, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
            box-shadow: none;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary-forest);
        }

        .btn-small {
            padding: 14px 34px;
            font-size: 1rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 5%;
        }

        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--text-dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold-leaf);
            border-radius: 4px;
        }

        .section-title::before {
            content: '✦';
            position: absolute;
            bottom: -28px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gold-leaf);
            font-size: 1.2rem;
            background: white;
            padding: 0 15px;
            z-index: 2;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-soft);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .quote-section {
            background: rgba(255, 255, 250, 0.95);
            border-radius: 56px;
            padding: 60px;
            margin: 40px auto;
            max-width: 1400px;
            box-shadow: var(--shadow-nature);
            border: 1px solid rgba(196, 168, 107, 0.25);
            position: relative;
            overflow: hidden;
        }
        
        .grid-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-bottom: 30px;
        }

        label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            color: var(--text-dark);
            letter-spacing: 0.3px;
            font-size: 0.9rem;
        }

        input, select {
            padding: 16px 22px;
            width: 100%;
            border-radius: 28px;
            border: 1.5px solid rgba(184, 168, 138, 0.4);
            background: white;
            font-size: 1rem;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
        }

        input:focus, select:focus {
            outline: none;
            border-color: var(--gold-leaf);
            box-shadow: 0 0 0 3px rgba(196, 168, 107, 0.15);
            transform: translateY(-2px);
        }

        .btn-current-location {
            width: 100%;
            padding: 14px;
            border-radius: 40px;
            background: linear-gradient(95deg, var(--primary-moss), var(--primary-forest));
            color: white;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-current-location:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 18px -8px rgba(0,0,0,0.15);
        }

        .resultado {
            background: linear-gradient(125deg, var(--primary-deep), var(--primary-forest));
            border-radius: 40px;
            padding: 28px;
            margin: 20px 0;
            display: none;
            color: white;
            box-shadow: var(--shadow-nature);
        }

        .resultado.mostrar {
            display: block;
            animation: fadeSlide 0.5s ease;
        }

        @keyframes fadeSlide {
            from { opacity: 0; transform: translateY(20px);}
            to { opacity: 1; transform: translateY(0);}
        }

        .resultado-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .resultado-item {
            background: rgba(255,255,245,0.12);
            backdrop-filter: blur(12px);
            padding: 18px 12px;
            border-radius: 28px;
            text-align: center;
            border: 1px solid rgba(196, 168, 107, 0.5);
            transition: transform 0.3s;
        }

        .resultado-item:hover {
            transform: translateY(-3px);
            background: rgba(255,255,245,0.2);
        }

        .resultado-icono { font-size: 2rem; display: block; margin-bottom: 8px; color: var(--gold-leaf);}
        .resultado-texto { font-size: 0.75rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px;}
        .resultado-valor { font-size: 1.5rem; font-weight: 800; font-family: 'Playfair Display', serif;}

        .map-container {
            position: relative;
            margin-top: 35px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: var(--shadow-nature);
            border: 2px solid var(--gold-leaf);
        }

        #map {
            height: 480px;
            width: 100%;
        }

        .map-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            display: flex;
            gap: 12px;
        }

        .map-type-btn {
            background: rgba(255,255,245,0.95);
            backdrop-filter: blur(8px);
            border: none;
            padding: 12px 22px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 40px;
            margin: 70px 0;
        }

        .feature-item {
            background: var(--pure-white);
            border-radius: 48px;
            padding: 48px 28px;
            text-align: center;
            transition: var(--transition-smooth);
            border: 1px solid rgba(196, 168, 107, 0.3);
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
        }

        .feature-item:hover {
            transform: translateY(-12px);
            border-color: var(--gold-leaf);
            box-shadow: var(--shadow-leaf);
        }

        .feature-icon {
            font-size: 3.8rem;
            color: var(--gold-leaf);
            margin-bottom: 24px;
        }

        .feature-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .reviews-widget-container {
            background: var(--pure-white);
            border-radius: 56px;
            padding: 40px;
            box-shadow: var(--shadow-nature);
            border: 1px solid rgba(196, 168, 107, 0.2);
        }

        .cta-section {
            background: linear-gradient(115deg, #2C2C2C, #3A3A3A);
            text-align: center;
            padding: 80px 5%;
            color: white;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .footer {
            background: #1A1A1A;
            color: #E0D6C8;
            padding: 50px 5% 30px;
            text-align: center;
            border-top: 1px solid var(--gold-leaf);
        }

        .footer .social-icons {
            justify-content: center;
            margin-bottom: 30px;
        }

        .footer .contact-info p {
            margin: 10px 0;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.15);
            padding-top: 30px;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        .destinations-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px 0 20px;
        }
        .destinations-links a {
            color: var(--gold-leaf);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 40px;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s;
        }
        .destinations-links a:hover {
            background: var(--gold-leaf);
            color: #1A1A1A;
        }

        .bot-container {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 9999;
            cursor: pointer;
            filter: drop-shadow(0 12px 20px rgba(0,0,0,0.15));
        }

        .bot-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(145deg, #4A4A4A, #2C2C2C);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 44px;
            border: 3px solid var(--gold-leaf);
            animation: float 3s infinite;
        }

        @keyframes float {
            0%,100%{transform: translateY(0);}
            50%{transform: translateY(-8px);}
        }

        .chat-bubble {
            position: fixed;
            bottom: 130px;
            right: 30px;
            background: rgba(255, 255, 245, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 36px;
            padding: 24px;
            width: 400px;
            max-width: calc(100vw - 50px);
            box-shadow: 0 30px 50px rgba(0,0,0,0.15);
            border: 1px solid var(--gold-leaf);
            display: none;
            z-index: 10000;
        }

        .chat-header {
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px solid var(--accent-sage);
            padding-bottom: 12px;
            margin-bottom: 18px;
        }

        .chat-messages {
            max-height: 350px;
            overflow-y: auto;
            margin-bottom: 20px;
        }

        .message {
            padding: 14px 20px;
            border-radius: 20px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            max-width: 85%;
        }

        .message.bot {
            background: #F0EDE6;
            border-left: 4px solid var(--primary-forest);
            margin-right: auto;
        }

        .message.user {
            background: #FEF3DA;
            border-left: 4px solid var(--gold-leaf);
            margin-left: auto;
        }

        .chat-input-area {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .chat-input-area input {
            flex: 1;
            padding: 14px;
            border-radius: 30px;
            border: 1.5px solid rgba(184, 168, 138, 0.4);
        }

        .chat-input-area button {
            padding: 14px 24px;
            border-radius: 30px;
            border: none;
            background: #4A4A4A;
            color: white;
            font-weight: 600;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .hero-content h2 { font-size: 2.8rem; }
            .main-header h1 { font-size: 2.2rem; }
            .grid-form { grid-template-columns: 1fr; }
            .resultado-grid { grid-template-columns: 1fr 1fr; }
            .quote-section { padding: 30px; }
            .section-title { font-size: 2.2rem; }
            .cta-section h2 { font-size: 2rem; }
        }

        /* =========================================================
           MEJORA VISUAL PROFESIONAL - GO ARENAL TRAVEL
           Ajuste solo visual: no modifica lógica, colores base ni funciones.
        ========================================================= */
        html {
            scroll-behavior: smooth;
        }

        body {
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        .language-selector {
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        }

        .top-bar {
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(16px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.035);
        }

        .main-header {
            padding: 34px 5% 30px;
            background:
                radial-gradient(circle at 50% 0%, rgba(196,168,107,0.16), transparent 34%),
                linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
        }

        .main-header img {
            height: 170px !important;
            max-width: min(420px, 90vw);
            object-fit: contain;
            filter: drop-shadow(0 18px 28px rgba(0,0,0,0.10));
        }

        .main-header .slogan {
            margin-top: 8px;
            font-size: clamp(1rem, 2vw, 1.35rem);
            color: #8d7952;
            letter-spacing: 1.8px;
            text-transform: uppercase;
        }

        .hero {
            position: relative;
            min-height: 680px;
            overflow: hidden;
            isolation: isolate;
            background-position: center 38%;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.52)),
                radial-gradient(circle at center, rgba(196,168,107,0.22), transparent 58%);
            z-index: -1;
        }

        .hero::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 120px;
            background: linear-gradient(180deg, transparent, rgba(250,247,242,0.98));
            z-index: -1;
        }

        .hero-content {
            width: min(920px, calc(100% - 36px));
            padding: 58px 46px;
            border-radius: 46px;
            background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
            border: 1px solid rgba(255,255,255,0.28);
            backdrop-filter: blur(8px);
            box-shadow: 0 34px 80px rgba(0,0,0,0.22);
        }

        .hero-content h2 {
            font-size: clamp(3rem, 7vw, 5.7rem);
            line-height: 0.95;
            letter-spacing: -1.8px;
            margin-bottom: 24px;
        }

        .hero-content p {
            font-size: clamp(1.05rem, 2.2vw, 1.55rem);
            line-height: 1.7;
            max-width: 720px;
        }

        .quote-section {
            margin: -70px auto 70px;
            width: min(1400px, calc(100% - 36px));
            background:
                linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,247,242,0.97));
            box-shadow: 0 34px 90px rgba(0,0,0,0.13);
            border: 1px solid rgba(196,168,107,0.38);
            z-index: 5;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 10% 0%, rgba(196,168,107,0.14), transparent 26%),
                radial-gradient(circle at 100% 18%, rgba(212,197,169,0.20), transparent 30%);
            pointer-events: none;
        }

        .quote-section > * {
            position: relative;
            z-index: 1;
        }

        .quote-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            margin-bottom: 34px;
            color: var(--text-dark);
        }

        .quote-title i,
        label i {
            color: var(--gold-leaf);
        }

        .campo {
            padding: 22px;
            border-radius: 34px;
            background: rgba(255,255,255,0.72);
            border: 1px solid rgba(196,168,107,0.18);
            box-shadow: 0 10px 28px rgba(0,0,0,0.035);
        }

        label {
            text-transform: uppercase;
            font-size: 0.78rem;
            letter-spacing: 1.4px;
            color: #3f3b34;
        }

        input, select {
            min-height: 56px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 6px 18px rgba(0,0,0,0.035);
        }

        .btn {
            box-shadow: 0 18px 32px -16px rgba(196,168,107,0.7);
        }

        .btn:active,
        .lang-btn:active,
        .map-type-btn:active,
        .btn-current-location:active {
            transform: translateY(0) scale(0.99);
        }

        .resultado {
            background:
                radial-gradient(circle at 10% 0%, rgba(196,168,107,0.26), transparent 32%),
                linear-gradient(125deg, #222222, #3A3A3A);
            border: 1px solid rgba(196,168,107,0.45);
        }

        .resultado-item {
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
        }

        .map-container {
            border: 1px solid rgba(196,168,107,0.65);
            box-shadow: 0 24px 70px rgba(0,0,0,0.14);
        }

        .map-type-btn.active,
        .map-type-btn:hover {
            background: var(--gold-leaf);
            color: white;
        }

        .container {
            padding-top: 90px;
            padding-bottom: 90px;
        }

        .section-title {
            letter-spacing: -0.8px;
        }

        .section-subtitle {
            color: #5f5b54;
            line-height: 1.8;
        }

        .features-grid {
            gap: 28px;
        }

        .feature-item {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
            box-shadow: 0 18px 44px rgba(0,0,0,0.055);
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, transparent, var(--gold-leaf), transparent);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .feature-item:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 92px;
            height: 92px;
            margin: 0 auto 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(196,168,107,0.13);
            border: 1px solid rgba(196,168,107,0.25);
            font-size: 2.7rem;
        }

        .feature-item p {
            color: #5e5a52;
            line-height: 1.75;
        }

        .reviews-widget-container {
            background:
                linear-gradient(180deg, #ffffff, #fbf8f1);
            box-shadow: 0 26px 70px rgba(0,0,0,0.08);
        }

        .cta-section {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 15% 0%, rgba(196,168,107,0.30), transparent 30%),
                linear-gradient(115deg, #242424, #3A3A3A);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 16px;
            border: 1px solid rgba(196,168,107,0.28);
            border-radius: 44px;
            pointer-events: none;
        }

        .cta-section h2,
        .cta-section p {
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.15rem;
            color: #efe6d4;
        }

        .footer {
            background:
                radial-gradient(circle at top, rgba(196,168,107,0.12), transparent 32%),
                #171717;
        }

        .destinations-links a {
            border: 1px solid rgba(196,168,107,0.25);
        }

        .bot-icon {
            box-shadow: 0 18px 40px rgba(0,0,0,0.28);
        }

        .chat-bubble {
            box-shadow: 0 34px 90px rgba(0,0,0,0.22);
        }

        .chat-header button {
            margin-left: auto;
            border: none;
            background: rgba(196,168,107,0.14);
            color: var(--text-dark);
            border-radius: 50%;
            width: 34px;
            height: 34px;
            cursor: pointer;
        }

        .chat-title {
            font-weight: 800;
            color: var(--text-dark);
        }

        @media (max-width: 980px) {
            .top-bar {
                gap: 18px;
                justify-content: center;
            }

            .contact-info {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }

            .contact-info a {
                margin-right: 0;
            }

            .quote-section {
                margin-top: -42px;
                border-radius: 42px;
                padding: 42px 26px;
            }

            .hero {
                background-attachment: scroll;
            }
        }

        @media (max-width: 768px) {
            .language-selector {
                justify-content: center;
                gap: 10px;
                padding: 10px 14px;
            }

            .lang-btn {
                padding: 9px 18px;
                font-size: 0.82rem;
            }

            .top-bar {
                padding: 14px 16px;
            }

            .contact-info a {
                width: 100%;
                justify-content: center;
                font-size: 0.86rem;
                padding: 10px 14px;
            }

            .main-header {
                padding: 24px 16px;
            }

            .main-header img {
                height: 128px !important;
            }

            .hero {
                min-height: 560px;
                padding: 54px 0;
            }

            .hero-content {
                padding: 38px 24px;
                border-radius: 34px;
            }

            .quote-section {
                width: calc(100% - 22px);
                padding: 30px 18px;
                border-radius: 34px;
            }

            .campo {
                padding: 18px;
                border-radius: 28px;
            }

            .resultado-grid {
                gap: 12px;
            }

            .resultado-item {
                border-radius: 22px;
            }

            .resultado-valor {
                font-size: 1.18rem;
            }

            #map {
                height: 360px;
            }

            .map-controls {
                top: 12px;
                right: 12px;
                gap: 8px;
            }

            .map-type-btn {
                padding: 10px 14px;
                font-size: 0.86rem;
            }

            .features-grid {
                margin-top: 50px;
            }

            .feature-item {
                padding: 38px 24px;
                border-radius: 36px;
            }

            .reviews-widget-container {
                border-radius: 36px;
                padding: 24px;
            }

            .bot-container {
                right: 18px;
                bottom: 18px;
            }

            .bot-icon {
                width: 66px;
                height: 66px;
                font-size: 36px;
            }

            .chat-bubble {
                right: 12px;
                bottom: 96px;
                width: calc(100vw - 24px);
                border-radius: 28px;
                padding: 18px;
            }
        }

        @media (max-width: 480px) {
            .resultado-grid {
                grid-template-columns: 1fr;
            }

            .section-title::before {
                background: #faf7f2;
            }

            .cta-section {
                padding: 64px 18px;
            }
        }


        /* Ajustes visuales solicitados: logo, footer, Costa Rica en una sola línea y estado del mapa */
        .no-wrap,
        .costa-rica-nowrap {
            white-space: nowrap !important;
            word-break: keep-all !important;
            overflow-wrap: normal !important;
            hyphens: none !important;
            display: inline-block;
        }

        .brand-lockup {
            width: min(100%, 660px);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
        }

        .logo-card {
            width: min(100%, 560px);
            padding: 22px 28px;
            border-radius: 30px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,247,242,0.96));
            border: 1px solid rgba(196,168,107,0.24);
            box-shadow: 0 24px 70px rgba(0,0,0,0.08);
        }

        .brand-logo,
        .main-header .brand-logo {
            display: block;
            width: 100%;
            max-width: 480px;
            height: auto !important;
            margin: 0 auto;
            border-radius: 18px;
            object-fit: contain;
            mix-blend-mode: multiply;
        }

        .main-header {
            padding: 42px 5% 36px;
        }

        .main-header .slogan {
            padding: 0 14px;
            font-size: clamp(1rem, 2.1vw, 1.35rem);
            line-height: 1.35;
            text-align: center;
        }

        .footer .social-icons a {
            color: #f2eadb;
            background: rgba(196,168,107,0.13);
            border: 1px solid rgba(196,168,107,0.42);
            box-shadow: 0 12px 28px rgba(0,0,0,0.22);
        }

        .footer .social-icons a:hover {
            background: var(--gold-leaf);
            color: #171717;
            border-color: var(--gold-leaf);
        }

        .footer .contact-info {
            color: #E0D6C8;
            line-height: 1.8;
        }

        .footer .contact-info p {
            overflow-wrap: normal;
        }

        .map-status {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            text-align: center;
            background:
                radial-gradient(circle at top, rgba(196,168,107,0.16), transparent 42%),
                linear-gradient(135deg, #252525, #3A3A3A);
            color: #f5f0e6;
            font-weight: 600;
            line-height: 1.6;
            z-index: 6;
            opacity: 0;
            pointer-events: none;
            transition: opacity .25s ease;
        }

        .map-status.show {
            opacity: 1;
            pointer-events: auto;
        }

        .map-status i {
            color: var(--gold-leaf);
            margin-right: 8px;
        }

        @media (max-width: 768px) {
            .brand-lockup {
                gap: 14px;
            }

            .logo-card {
                width: min(100%, 420px);
                padding: 16px 18px;
                border-radius: 24px;
            }

            .brand-logo {
                max-width: 360px;
            }

            .main-header {
                padding: 26px 16px 24px;
            }

            .footer .social-icons {
                gap: 12px;
            }
        }

        @media (max-width: 420px) {
            .logo-card {
                padding: 13px 14px;
            }

            .brand-logo {
                max-width: 300px;
            }
        }

        .sr-only {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

/* ==================== AI CHAT IMPROVEMENTS ==================== */
.chat-bubble {
    box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}
.chat-header .chat-title::after {
    content: ' Real AI';
    display: inline-block;
    margin-left: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    color: #2C2C2C;
    background: linear-gradient(135deg, var(--accent-sage), var(--gold-leaf));
    vertical-align: middle;
}
.message.system {
    background: rgba(212, 197, 169, 0.18);
    color: var(--primary-deep);
    border: 1px solid rgba(196, 168, 107, 0.25);
    font-size: 0.84rem;
    text-align: center;
    margin: 8px auto 12px;
    max-width: 92%;
}
.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 8px 0 14px;
}
.chat-quick-actions button,
.ai-whatsapp-button,
.ai-quote-button {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    background: rgba(212, 197, 169, 0.22);
    color: var(--primary-deep);
    transition: all 0.25s ease;
}
.chat-quick-actions button:hover,
.ai-whatsapp-button:hover,
.ai-quote-button:hover {
    transform: translateY(-2px);
    background: var(--accent-sage);
}
.ai-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -2px 0 14px;
}
.ai-whatsapp-button,
.ai-quote-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ai-whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}
.ai-quote-button {
    background: rgba(61, 89, 72, 0.12);
    color: var(--primary-forest);
    border: 1px solid rgba(61, 89, 72, 0.18);
}
.typing-indicator {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.35;
    animation: typingPulse 1.1s infinite ease-in-out;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingPulse {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.35; }
    40% { transform: scale(1.15); opacity: 0.95; }
}


/* ==================== AI CHAT ACTION BUTTON SYMMETRY FIX ==================== */
.ai-action-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 8px 0 16px !important;
}

.ai-action-row button,
.ai-whatsapp-button,
.ai-quote-button {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: none !important;
    min-height: 38px !important;
    padding: 9px 15px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    font-family: inherit !important;
    font-size: 0.86rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease !important;
}

.ai-whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
}

.ai-quote-button {
    background: linear-gradient(135deg, #C4A86B 0%, #8F7542 100%) !important;
    color: #ffffff !important;
}

.ai-whatsapp-button i,
.ai-quote-button i {
    color: inherit !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
}

.ai-whatsapp-button:hover,
.ai-quote-button:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.04) !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 480px) {
    .ai-action-row {
        gap: 7px !important;
    }

    .ai-action-row button,
    .ai-whatsapp-button,
    .ai-quote-button {
        min-height: 36px !important;
        padding: 8px 12px !important;
        font-size: 0.78rem !important;
    }
}

/* ==================== DESTINATION MODALS + AI GUIDE ==================== */
.destinations-section {
    padding: 90px 20px 72px;
    background:
        radial-gradient(circle at top left, rgba(196, 168, 107, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(245, 240, 230, 0.96), rgba(255, 255, 255, 0.92));
    position: relative;
}

.destinations-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.destinations-kicker {
    width: max-content;
    max-width: 100%;
    margin: 0 auto 16px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(196, 168, 107, 0.18);
    border: 1px solid rgba(196, 168, 107, 0.28);
    color: var(--primary-deep);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.destinations-kicker i {
    color: var(--gold-leaf);
    margin-right: 7px;
}

.destinations-title {
    margin-bottom: 12px;
}

.destinations-subtitle {
    max-width: 820px;
}

.destinations-contact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 32px auto 34px;
    padding: 18px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(196, 168, 107, 0.24);
    box-shadow: var(--shadow-leaf);
}

.destinations-contact-strip span {
    color: var(--text-soft);
    font-weight: 650;
}

.destinations-contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.destination-soft-btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--primary-deep);
    background: linear-gradient(135deg, var(--accent-sage), var(--gold-leaf));
    box-shadow: 0 10px 22px rgba(196, 168, 107, 0.24);
    transition: var(--transition-smooth);
}

.destination-soft-btn.whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
}

.destination-soft-btn:hover {
    transform: translateY(-2px);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.destination-card {
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
    background: var(--pure-white);
    box-shadow: var(--shadow-leaf);
    border: 1px solid rgba(196, 168, 107, 0.16);
    transition: var(--transition-smooth);
    color: var(--text-dark);
    font-family: inherit;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-nature);
}

.destination-card-image {
    display: block;
    height: 190px;
    overflow: hidden;
    background: var(--sand-cream);
}

.destination-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.destination-card:hover .destination-card-image img {
    transform: scale(1.08);
}

.destination-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px 22px;
}

.destination-card-label {
    width: max-content;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(196, 168, 107, 0.16);
    color: var(--primary-deep);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.destination-card strong {
    font-size: 1.22rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.destination-card span:not(.destination-card-image):not(.destination-card-content):not(.destination-card-label) {
    color: var(--text-soft);
    font-size: 0.93rem;
}

.destination-card em {
    margin-top: 4px;
    color: var(--gold-leaf);
    font-style: normal;
    font-weight: 850;
}

.destination-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(26, 26, 26, 0.62);
    backdrop-filter: blur(8px);
}

.destination-modal-overlay.show {
    display: flex;
}

.destination-modal-open {
    overflow: hidden;
}

.destination-modal {
    width: min(980px, 100%);
    max-height: 92vh;
    overflow: auto;
    border-radius: 34px;
    background: var(--pure-white);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    border: 1px solid rgba(196, 168, 107, 0.22);
}

.destination-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-deep);
    box-shadow: var(--shadow-leaf);
    transition: var(--transition-smooth);
}

.destination-modal-close:hover {
    transform: rotate(90deg);
    background: var(--sand-cream);
}

.destination-modal-image-wrap {
    min-height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 34px 0 0 34px;
    background: var(--sand-cream);
}

.destination-modal-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.destination-modal-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-deep);
    font-weight: 850;
    box-shadow: var(--shadow-leaf);
}

.destination-modal-body {
    padding: 46px 38px 34px;
}

.destination-modal-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.destination-modal-body p {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.destination-modal-tips {
    background: linear-gradient(135deg, rgba(245, 240, 230, 0.92), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(196, 168, 107, 0.18);
    border-radius: 24px;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.destination-modal-tips h4 {
    color: var(--primary-deep);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.destination-modal-tips h4 i {
    color: var(--gold-leaf);
    margin-right: 6px;
}

.destination-modal-tips ul {
    margin-left: 18px;
    color: var(--text-soft);
}

.destination-modal-tips li {
    margin-bottom: 7px;
}

.destination-modal-contact {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold-leaf);
    border-radius: 18px;
    background: rgba(196, 168, 107, 0.11);
}

.destination-modal-contact strong {
    color: var(--primary-deep);
}

.destination-modal-contact span {
    color: var(--text-soft);
    font-size: 0.93rem;
}

.destination-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.destination-action {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 850;
    color: var(--primary-deep);
    background: var(--sand-cream);
    transition: var(--transition-smooth);
}

.destination-action.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-moss));
}

.destination-action.ai {
    background: linear-gradient(135deg, var(--accent-sage), var(--gold-leaf));
}

.destination-action.whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.destination-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-leaf);
}

.destination-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(20px);
    z-index: 3200;
    opacity: 0;
    pointer-events: none;
    width: min(520px, calc(100% - 32px));
    padding: 14px 18px;
    border-radius: 999px;
    text-align: center;
    font-weight: 800;
    color: var(--primary-deep);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(196, 168, 107, 0.25);
    box-shadow: var(--shadow-nature);
    transition: all 0.28s ease;
}

.destination-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 980px) {
    .destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .destination-modal {
        grid-template-columns: 1fr;
    }

    .destination-modal-image-wrap {
        border-radius: 34px 34px 0 0;
    }

    .destination-modal-image-wrap img {
        min-height: 320px;
        max-height: 360px;
    }
}

@media (max-width: 680px) {
    .destinations-section {
        padding: 58px 16px 50px;
    }

    .destinations-contact-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .destinations-contact-actions,
    .destination-modal-actions {
        flex-direction: column;
    }

    .destination-soft-btn,
    .destination-action {
        width: 100%;
    }

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

    .destination-modal-overlay {
        padding: 12px;
    }

    .destination-modal-body {
        padding: 32px 22px 26px;
    }
}


/* ==================== FLOATING CONTACT STACK: AI + WHATSAPP ==================== */
.bot-container {
    right: 30px !important;
    bottom: 118px !important;
    z-index: 10020 !important;
}

.chat-bubble {
    right: 30px !important;
    bottom: 220px !important;
    z-index: 10030 !important;
}

.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 28px;
    z-index: 10010;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 178px;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 18px 38px rgba(18, 140, 126, 0.28);
    border: 1px solid rgba(255,255,255,0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(18, 140, 126, 0.36);
    filter: brightness(1.03);
}

.floating-whatsapp i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    font-size: 1.45rem;
    flex: 0 0 auto;
}

.floating-whatsapp span {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.floating-whatsapp strong {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.floating-whatsapp small {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.88;
    margin-top: 3px;
}

@media (max-width: 980px) {
    .bot-container {
        right: 18px !important;
        bottom: 104px !important;
    }

    .chat-bubble {
        right: 12px !important;
        bottom: 184px !important;
        width: calc(100vw - 24px);
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 20px;
        min-width: 154px;
        padding: 10px 14px 10px 11px;
    }

    .floating-whatsapp i {
        width: 34px;
        height: 34px;
        font-size: 1.25rem;
    }

    .floating-whatsapp strong {
        font-size: 0.84rem;
    }

    .floating-whatsapp small {
        font-size: 0.66rem;
    }
}


/* ==================== FLOATING ROUND CONTACT STACK: AI + WHATSAPP ==================== */
.bot-container {
    position: fixed !important;
    right: 30px !important;
    bottom: 126px !important;
    z-index: 10020 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    cursor: pointer !important;
}

.bot-container .bot-icon {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 38px !important;
    box-shadow: 0 18px 42px rgba(0,0,0,0.18) !important;
}

.ai-floating-message {
    display: block !important;
    max-width: 220px;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255,255,245,0.96);
    color: #2f3f31;
    border: 1px solid rgba(184,168,138,0.55);
    box-shadow: 0 16px 34px rgba(0,0,0,0.12);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0.01em;
    pointer-events: none;
    white-space: normal;
}

.ai-floating-message::before {
    content: "🦥";
    margin-right: 6px;
}

.chat-bubble {
    right: 30px !important;
    bottom: 218px !important;
    z-index: 10030 !important;
}

.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 34px;
    z-index: 10010;
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 18px 42px rgba(18, 140, 126, 0.28);
    border: 2px solid rgba(255,255,255,0.52);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(18, 140, 126, 0.36);
    filter: brightness(1.03);
}

.floating-whatsapp i {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    font-size: 2.25rem;
    line-height: 1;
}

.floating-whatsapp span:not(.sr-only),
.floating-whatsapp strong,
.floating-whatsapp small {
    display: none !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 980px) {
    .bot-container {
        right: 16px !important;
        bottom: 104px !important;
        gap: 9px !important;
    }

    .bot-container .bot-icon,
    .floating-whatsapp {
        width: 62px !important;
        height: 62px !important;
        min-width: 62px !important;
        min-height: 62px !important;
    }

    .bot-container .bot-icon {
        font-size: 32px !important;
    }

    .floating-whatsapp {
        right: 16px !important;
        bottom: 24px !important;
    }

    .floating-whatsapp i {
        font-size: 1.95rem !important;
    }

    .ai-floating-message {
        max-width: 178px;
        padding: 9px 12px;
        font-size: 0.74rem;
        line-height: 1.14;
    }

    .chat-bubble {
        right: 12px !important;
        bottom: 178px !important;
        width: calc(100vw - 24px) !important;
    }
}


/* ==================== AI HINT STACK: MOVING MESSAGE + CLOSE + MODAL SAFE ==================== */
.bot-container {
    right: 30px !important;
    bottom: 126px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
}

.ai-floating-message {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    max-width: 238px !important;
    padding: 10px 10px 10px 15px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 245, 0.97) !important;
    color: #2f3f31 !important;
    border: 1px solid rgba(184,168,138,0.58) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,0.12) !important;
    font-size: 0.81rem !important;
    font-weight: 800 !important;
    line-height: 1.14 !important;
    letter-spacing: 0.01em !important;
    pointer-events: auto !important;
    white-space: normal !important;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
}

.ai-floating-message span {
    display: inline-block !important;
}

.ai-floating-message-close {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(47,63,49,0.12) !important;
    color: #2f3f31 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 20px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.ai-floating-message-close:hover {
    background: rgba(47,63,49,0.22) !important;
    transform: scale(1.05) !important;
}

body.ai-chat-open .ai-floating-message,
body.destination-modal-open .ai-floating-message,
body.ai-floating-message-hidden .ai-floating-message {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(8px) scale(0.96) !important;
    pointer-events: none !important;
}

.chat-bubble {
    bottom: 218px !important;
}

.floating-whatsapp {
    right: 30px !important;
    bottom: 34px !important;
    width: 72px !important;
    height: 72px !important;
}

@media (max-width: 980px) {
    .bot-container {
        right: 16px !important;
        bottom: 104px !important;
        gap: 8px !important;
    }

    .ai-floating-message {
        max-width: 180px !important;
        padding: 9px 8px 9px 12px !important;
        font-size: 0.72rem !important;
    }

    .ai-floating-message-close {
        width: 19px !important;
        height: 19px !important;
        min-width: 19px !important;
        font-size: 14px !important;
    }

    .chat-bubble {
        bottom: 178px !important;
    }

    .floating-whatsapp {
        right: 16px !important;
        bottom: 24px !important;
        width: 62px !important;
        height: 62px !important;
    }
}

/* ==================== FINAL FLOATING CONTACT STACK + MOBILE OPTIMIZATION ==================== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.floating-contact-stack {
    position: fixed !important;
    right: 28px !important;
    bottom: 28px !important;
    z-index: 10020 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 12px !important;
    pointer-events: none !important;
    animation: contactStackFloat 3.6s ease-in-out infinite !important;
}

@keyframes contactStackFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.floating-contact-stack .ai-floating-message,
.floating-contact-stack .bot-container,
.floating-contact-stack .floating-whatsapp {
    pointer-events: auto !important;
}

.floating-contact-stack .ai-floating-message {
    order: 1 !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    max-width: 255px !important;
    padding: 11px 10px 11px 16px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 245, 0.98) !important;
    color: #263629 !important;
    border: 1px solid rgba(196,168,107,0.68) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14) !important;
    font-size: 0.84rem !important;
    font-weight: 850 !important;
    line-height: 1.14 !important;
    letter-spacing: 0.01em !important;
    white-space: normal !important;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
}

.floating-contact-stack .ai-floating-message::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -7px;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    background: rgba(255, 255, 245, 0.98);
    border-right: 1px solid rgba(196,168,107,0.55);
    border-bottom: 1px solid rgba(196,168,107,0.55);
}

.ai-floating-message-close {
    position: relative !important;
    z-index: 2 !important;
}

.floating-contact-stack .bot-container {
    order: 2 !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    cursor: pointer !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 72px !important;
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    filter: drop-shadow(0 14px 24px rgba(0,0,0,0.18)) !important;
}

.floating-contact-stack .bot-icon {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #4A4A4A, #242424) !important;
    border: 3px solid var(--gold-leaf) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 39px !important;
    box-shadow: 0 16px 38px rgba(0,0,0,0.26) !important;
    animation: none !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}

.floating-contact-stack .bot-container:hover .bot-icon,
.floating-contact-stack .floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.035) !important;
}

.floating-contact-stack .floating-whatsapp {
    order: 3 !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #25D366, #128C7E) !important;
    color: #fff !important;
    border: 3px solid rgba(255,255,255,0.92) !important;
    box-shadow: 0 16px 38px rgba(18,140,126,0.32), 0 12px 26px rgba(0,0,0,0.18) !important;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}

.floating-contact-stack .floating-whatsapp i {
    font-size: 35px !important;
    margin: 0 !important;
}

body.ai-chat-open .floating-contact-stack .ai-floating-message,
body.destination-modal-open .floating-contact-stack .ai-floating-message,
body.ai-floating-message-hidden .floating-contact-stack .ai-floating-message {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(10px) scale(.96) !important;
    pointer-events: none !important;
}

.chat-bubble {
    right: 116px !important;
    bottom: 34px !important;
    width: min(400px, calc(100vw - 150px)) !important;
    max-height: calc(100vh - 70px) !important;
    overflow: hidden !important;
}

.chat-messages {
    max-height: min(350px, calc(100vh - 245px)) !important;
}

/* Cleaner home layout without changing the brand style */
.hero {
    min-height: clamp(310px, 48vw, 570px) !important;
}

.main-header,
.quote-section,
.destinations-shell,
.container {
    width: min(1180px, calc(100% - 36px));
}

.quote-section {
    margin-left: auto !important;
    margin-right: auto !important;
}

.destination-card,
.feature-item,
.quote-section,
.destination-modal {
    transform: translateZ(0);
}

/* Tablet and mobile refinements */
@media (max-width: 980px) {
    .top-bar {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 12px 16px !important;
        text-align: center !important;
    }

    .top-bar .contact-info {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 14px !important;
    }

    .main-header {
        padding: 22px 16px !important;
    }

    .brand-lockup {
        gap: 14px !important;
    }

    .logo-card {
        max-width: min(260px, 74vw) !important;
    }

    .hero-content h2 {
        font-size: clamp(2rem, 9vw, 3.35rem) !important;
        line-height: 1.04 !important;
    }

    .hero-content p {
        font-size: clamp(1rem, 4.5vw, 1.35rem) !important;
    }

    .quote-section {
        padding: 24px 18px !important;
        margin-top: -34px !important;
        border-radius: 28px !important;
    }

    .grid-form {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .campo input,
    .campo select,
    .btn,
    .btn-current-location {
        min-height: 48px !important;
        font-size: 16px !important;
    }

    .resultado-grid,
    .features-grid,
    .destination-grid {
        grid-template-columns: 1fr !important;
    }

    .destinations-contact-strip {
        align-items: stretch !important;
        text-align: center !important;
    }

    .destinations-contact-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .destination-soft-btn {
        justify-content: center !important;
        min-height: 46px !important;
    }

    .destination-modal {
        width: min(94vw, 760px) !important;
        max-height: 88vh !important;
        overflow: auto !important;
        border-radius: 28px !important;
    }

    .destination-modal-actions {
        grid-template-columns: 1fr !important;
    }

    .floating-contact-stack {
        right: 14px !important;
        bottom: 18px !important;
        gap: 9px !important;
    }

    .floating-contact-stack .ai-floating-message {
        max-width: 205px !important;
        padding: 9px 8px 9px 12px !important;
        font-size: .73rem !important;
    }

    .floating-contact-stack .bot-container,
    .floating-contact-stack .bot-icon,
    .floating-contact-stack .floating-whatsapp {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }

    .floating-contact-stack .bot-icon {
        font-size: 32px !important;
        border-width: 2px !important;
    }

    .floating-contact-stack .floating-whatsapp {
        border-width: 2px !important;
    }

    .floating-contact-stack .floating-whatsapp i {
        font-size: 30px !important;
    }

    .chat-bubble {
        right: 14px !important;
        bottom: 156px !important;
        width: calc(100vw - 28px) !important;
        max-height: calc(100vh - 180px) !important;
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .chat-messages {
        max-height: calc(100vh - 350px) !important;
    }
}

@media (max-width: 560px) {
    .language-selector {
        top: 10px !important;
        right: 10px !important;
        gap: 6px !important;
    }

    .lang-btn {
        padding: 8px 10px !important;
        font-size: .78rem !important;
    }

    .top-bar {
        padding-top: 58px !important;
    }

    .top-bar .contact-info a {
        font-size: .78rem !important;
        max-width: 100% !important;
        word-break: break-word !important;
    }

    .social-icons a {
        width: 38px !important;
        height: 38px !important;
    }

    .section-title,
    .quote-title,
    .destinations-title {
        font-size: clamp(1.6rem, 8vw, 2.35rem) !important;
    }

    .section-subtitle,
    .destinations-subtitle {
        font-size: .98rem !important;
    }

    .hero {
        min-height: 360px !important;
        padding: 0 16px !important;
    }

    .hero-content {
        padding: 0 10px !important;
    }

    .main-header,
    .quote-section,
    .destinations-shell,
    .container {
        width: min(100% - 24px, 1180px) !important;
    }

    .quote-section {
        padding: 22px 14px !important;
    }

    .map-container {
        min-height: 280px !important;
    }

    #map {
        min-height: 280px !important;
    }

    .destinations-contact-actions {
        grid-template-columns: 1fr !important;
    }

    .destination-card-content strong {
        font-size: 1.15rem !important;
    }

    .destination-modal-image-wrap {
        min-height: 210px !important;
    }

    .destination-modal-body {
        padding: 20px 16px !important;
    }

    .destination-modal-close {
        width: 42px !important;
        height: 42px !important;
        top: 12px !important;
        right: 12px !important;
    }

    .chat-bubble {
        bottom: 145px !important;
    }

    .chat-input-area {
        gap: 8px !important;
    }

    .chat-input-area input {
        min-width: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-contact-stack,
    .floating-contact-stack .bot-icon,
    .bot-icon {
        animation: none !important;
    }
}

/* FIX: center the main logo/header after mobile optimization */
.main-header {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.main-header .brand-lockup {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
}

.main-header .logo-card {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.main-header .brand-logo {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    object-position: center center !important;
}

@media (max-width: 980px) {
    .main-header .logo-card {
        width: min(360px, 86vw) !important;
        max-width: min(360px, 86vw) !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .main-header .brand-logo {
        width: 100% !important;
        max-width: 320px !important;
    }
}

@media (max-width: 420px) {
    .main-header .logo-card {
        width: min(330px, 88vw) !important;
        max-width: min(330px, 88vw) !important;
    }

    .main-header .brand-logo {
        max-width: 292px !important;
    }
}


/* =========================================================================
   MEJORAS VISUALES & DE RENDIMIENTO 2026  ·  Go Arenal Travel
   Bloque añadido por Claude. SOLO CSS — no cambia HTML ni JS.
   Sobrescribe selectivamente; todo lo anterior se mantiene.
   ========================================================================= */

/* ---- 1. ROBUSTEZ DEL HERO -------------------------------------------------
   El hero dependía 100% de una imagen de imgur.com. Si imgur falla, quedaba
   gris. Añadimos un degradado de marca DEBAJO de la imagen como respaldo:
   si la foto carga, se ve la foto; si no, se ve un degradado elegante.        */
.hero{
  background:
    linear-gradient(135deg, rgba(28,28,28,.52), rgba(28,28,28,.34)),
    url('https://i.imgur.com/EVshL3o.jpeg'),
    linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 55%, #C4A86B 140%);
  background-size: cover, cover, cover;
  background-position: center 30%, center 30%, center;
  background-repeat: no-repeat;
}

/* ---- 2. ANIMACIONES DE ENTRADA AL HACER SCROLL ---------------------------
   Da sensación premium y moderna sin tocar JS: las secciones aparecen con un
   leve fade-up al cargar.                                                     */
@keyframes gatRise{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}
.hero-content,
.quote-section,
.destinations-shell,
.features-grid,
.reviews-widget-container,
.cta-section{
  animation: gatRise .7s cubic-bezier(.21,1,.32,1) both;
}
.quote-section{animation-delay:.05s}
.features-grid{animation-delay:.08s}

/* Las tarjetas internas entran escalonadas */
.feature-item{animation: gatRise .6s cubic-bezier(.21,1,.32,1) both}
.feature-item:nth-child(2){animation-delay:.08s}
.feature-item:nth-child(3){animation-delay:.16s}
.feature-item:nth-child(4){animation-delay:.24s}

/* ---- 3. ICONOS DE "WHY CHOOSE US" CON CARÁCTER ---------------------------
   Antes eran solo un icono dorado suelto. Ahora van en un disco con degradado
   suave de marca, centrado y con leve elevación.                             */
.feature-icon{
  width:92px;height:92px;
  margin:0 auto 24px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  font-size:2.4rem;
  color:#fff;
  background:linear-gradient(140deg, var(--gold-leaf), var(--accent-olive));
  box-shadow:0 14px 30px rgba(196,168,107,.35);
  transition:var(--transition-smooth);
}
.feature-item:hover .feature-icon{
  transform:scale(1.06) rotate(-3deg);
  box-shadow:0 18px 38px rgba(196,168,107,.45);
}

/* ---- 4. FORMULARIO DE COTIZACIÓN MÁS NÍTIDO ------------------------------ */
.quote-section{ scroll-margin-top:90px }
input:focus, select:focus{
  border-color:var(--gold-leaf);
  box-shadow:0 0 0 4px rgba(196,168,107,.18);
}
/* El botón verde inline de WhatsApp y el principal comparten micro-interacción */
.btn{ will-change: transform }
.btn:hover{ transform: translateY(-2px) }
.btn:active{ transform: translateY(0) scale(.99) }

/* ---- 5. TARJETAS DE DESTINO: FOTO CON ZOOM SUTIL ------------------------- */
.destination-card{ will-change: transform }
.destination-card img{ transition: transform .6s cubic-bezier(.21,1,.32,1) }
.destination-card:hover img{ transform: scale(1.06) }
.destination-card:hover{ transform: translateY(-6px) }

/* ---- 6. HEADER / LOGO: presentación más limpia --------------------------- */
.logo-card{ transition: var(--transition-smooth) }
.logo-card:hover{ transform: translateY(-2px); box-shadow:0 28px 80px rgba(0,0,0,.12) }

/* ---- 7. BOTONES FLOTANTES (WhatsApp / Sloth AI) con pulso suave ---------- */
@keyframes gatPulse{0%,100%{box-shadow:0 10px 30px rgba(37,211,102,.35)}50%{box-shadow:0 10px 38px rgba(37,211,102,.6)}}
.floating-whatsapp{ animation: gatPulse 2.8s ease-in-out infinite }

/* ---- 8. SCROLLBARS DISCRETAS EN LA MARCA --------------------------------- */
*{ scrollbar-width: thin; scrollbar-color:#D4C5A9 transparent }
*::-webkit-scrollbar{ width:10px;height:10px }
*::-webkit-scrollbar-thumb{ background:#D4C5A9;border-radius:999px;border:3px solid #fff }
*::-webkit-scrollbar-thumb:hover{ background:var(--gold-leaf) }

/* ---- 9. RENDIMIENTO: fondo decorativo del body más liviano ---------------
   El body cargaba una FOTO externa de Bora Bora (Pexels, ~1600px) al 5% de
   opacidad como textura — un coste de red alto para algo casi invisible.
   La reemplazamos por un degradado CSS equivalente, sin pedidos de red.      */
body::before{
  background-image:
    radial-gradient(circle at 18% 12%, rgba(196,168,107,.06), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(212,197,169,.07), transparent 46%) !important;
  opacity:1 !important;
}

/* ---- 10. ACCESIBILIDAD: respeta "reduce motion" -------------------------- */
@media (prefers-reduced-motion: reduce){
  .hero-content,.quote-section,.destinations-shell,.features-grid,
  .reviews-widget-container,.cta-section,.feature-item{ animation:none }
  .floating-whatsapp{ animation:none }
  .destination-card:hover img,
  .feature-item:hover .feature-icon{ transform:none }
}

/* ---- 11. FOCO VISIBLE PARA NAVEGACIÓN POR TECLADO (a11y) ----------------- */
a:focus-visible, button:focus-visible,
.lang-btn:focus-visible, .destination-card:focus-visible{
  outline:3px solid var(--gold-leaf);
  outline-offset:2px;
  border-radius:8px;
}
