/* CSS Reset and Variables */
:root {
    --color-green: #0a3d31;
    --color-green-light: #155d4d;
    --color-blue: #1c3545;
    --color-white: #ffffff;
    --color-gray: #f8fafc;
    --color-gold: #c5a86d;
    --color-text: #334155;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-gray);
}

.gold {
    color: var(--color-gold);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-blue);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--color-text);
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-blue);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

.tours .btn-outline {
    color: var(--color-green);
    border-color: var(--color-green);
}

.tours .btn-outline:hover {
    background-color: var(--color-green);
    color: var(--color-white);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 168, 109, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(197, 168, 109, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 168, 109, 0);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-green);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 4px;
}

.lang-btn {
    border: none;
    background: transparent;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.lang-btn.active {
    background: var(--color-green);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-btn:hover:not(.active) {
    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .logo {
        order: 1;
    }

    .header-content .btn {
        order: 2;
    }

    .lang-switcher {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        gap: 0.5rem;
        padding: 4px;
    }

    .lang-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

/* Hero Premium Section */
.hero-premium {
    height: 100vh;
    min-height: 700px;
    background-color: #0b1512;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: top right;
    z-index: 0;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0b1512 0%, #0b1512 40%, rgba(11, 21, 18, 0.7) 60%, transparent 100%);
    z-index: 1;
}

.hero-content-premium {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 60px;
}

.hero-text-premium {
    max-width: 650px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.hero-label .line {
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
}

.hero-title-premium {
    font-family: var(--font-heading);
    font-size: 4.0rem;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cursive-gold {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    text-transform: none;
    color: var(--color-gold);
    font-size: 5.5rem;
}

.hero-subtitle-premium {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-buttons-premium {
    display: flex;
}

.btn-primary-sharp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-gold);
    color: #1a1a1a;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary-sharp:hover {
    background-color: #d4b87e;
    transform: translateY(-2px);
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

.pulse-sharp {
    animation: pulse-sharp-animation 2s infinite;
}

@keyframes pulse-sharp-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 168, 109, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(197, 168, 109, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 168, 109, 0);
    }
}

/* Numbers Section */
.numbers-section {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 60px 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.number-card .number {
    color: var(--color-gold);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Why Us Section */
.why-us {
    padding: 60px 0;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .why-us-content {
        grid-template-columns: 1fr 1.5fr;
    }

    .why-us-content .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.why-us-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(197, 168, 109, 0.2);
    aspect-ratio: 9 / 16;
    background: #000;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .why-us-video-wrapper {
        aspect-ratio: auto;
        height: 100%;
    }
}

.why-us-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.video-play-overlay svg {
    margin-left: 6px;
    /* perfectly centers play icon visually */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card {
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 34px;
    height: 34px;
    color: var(--color-gold);
    margin-bottom: 0.6rem;
}

.feature-card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

/* Tours Section */
.country-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    position: sticky;
    top: var(--header-height, 70px);
    z-index: 90;
    background: rgba(245, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-radius: 50px;
}

.tab-btn {
    padding: 10px 30px;
    border: none;
    background: var(--color-white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

@media (max-width: 600px) {
    .tab-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.tour-img.skeleton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

.tour-img.loaded::before {
    display: none;
}

.whatsapp-print img.skeleton {
    background-color: #e0e0e0;
    min-height: 150px;
}

.whatsapp-print img.skeleton::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(200%); }
}

.bg-cataratas-br {
    background-image: url('../images/cataratas-br.jpg');
}

.bg-parque-aves {
    background-image: url('../images/parque-aves.jpeg');
}

.bg-itaipu {
    background-image: url('../images/itaipu.webp');
}

.bg-cde {
    background-image: url('../images/compras-no-paraguai-roteiro-foz-do-iguacu-1-1024x678.webp');
}

.bg-compras {
    background-image: url('../images/cellshop-paraguai.jpeg');
}

.bg-cataratas-ar {
    background-image: url('../images/cataratas-br.jpg');
}

.bg-feirinha {
    background-image: url('../images/feirinha-argentina.webp');
}

/* Novos passeios */
.bg-transfer {
    background-image: url('../images/motorista.png');
    background-position: center 25%;
}

.bg-macuco {
    background-image: url('../images/macuco.webp');
}

.bg-kattamara {
    background-image: url('../images/katamaram.jpg');
}

.bg-dutyfree {
    background-image: url('../images/parte-interna-do-duty-free-argentina.jpg');
}

.bg-jantar {
    background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=800&q=80');
}

.bg-roda-gigante {
    background-image: url('../images/roda-gigante.jpg');
}

.bg-templo {
    background-image: url('../images/Templo-Budista-em-Foz-do-Iguacu-conheca-um-pedacinho-do-Oriente-no-Brasil-Blog-TourFacil-1024x1024.jpg');
}

.bg-movicar {
    background-image: url('../images/movie-cars-foz-do-iguacu-27.jpg');
}

.bg-icebar {
    background-image: url('../images/ice-bar.jpg');
}

.bg-dinossauros {
    background-image: url('../images/Vale-dos-Dinossauros-1-1.jpeg');
}

.bg-passeio-ar {
    background-image: url('../images/cataratas-br.jpg');
}

.bg-marco-3-fronteiras {
    background-image: url('../images/marco-3-froteiras.jpg');
}

/* Shoppings Paraguai */
.bg-shopping-china {
    background-image: url('../images/shopping-china.jpg');
}

.bg-atacado-connect {
    background-image: url('../images/atacado_connect.jpg');
}

.bg-new-zone {
    background-image: url('../images/new-zone.jpg');
}

.bg-mega-eletronico {
    background-image: url('../images/nissei.jpg');
}

.bg-shopping-paris {
    background-image: url('../images/shopping-paris.jpg');
}

/* Argentina Blocks */
.bg-gastronomia-ar {
    background-image: url('../images/gastronomia-argentina.jpg');
}

.bg-feirinha-ar {
    background-image: url('../images/feirinha-argentina.webp');
}

.bg-cassino-ar {
    background-image: url('../images/casino-argentina.jpeg');
}

.bg-cataratas-ar {
    background-image: url('../images/catarata-argentina.jpg');
}

.tour-info {
    padding: 2rem;
}

.tour-info h3 {
    margin-bottom: 0.5rem;
}

.duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0 1.5rem 0;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 1rem;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-md);
}

/* Testimonials */
.testimonials {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-gray);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-blue);
}

.stars {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}

.stars .star-icon {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
    fill: var(--color-gold);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.whatsapp-print {
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-print img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.whatsapp-print:hover img {
    transform: scale(1.02);
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--color-white);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-body {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 500px;
}

.accordion-item.open .accordion-header i {
    transform: rotate(180deg);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

/* Final CTA */
.final-cta {
    background-image: url('https://images.unsplash.com/photo-1549479361-ec853039d914?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    position: relative;
    color: var(--color-white);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 49, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-contact h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Floating Video PiP */
.pip-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    z-index: 9999;
}

.pip-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pip-circle:hover {
    transform: scale(1.1);
}

.pip-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.pip-circle-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pip-circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pip-play-icon {
    color: var(--color-gold);
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
    position: relative;
    z-index: 3;
}

.pip-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    animation: pipRing 2s ease-in-out infinite;
}

@keyframes pipRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.3;
    }

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

.pip-player {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 540px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #000;
    animation: pipOpen 0.35s ease;
}

.pip-player.active {
    display: block;
}

@keyframes pipOpen {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.pip-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.pip-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.pip-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: pulse-animation-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-animation-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Floating Instagram */
.instagram-float {
    position: fixed;
    bottom: 180px;
    right: 30px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeB 90%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: pulse-animation-ig 2s infinite;
}

.instagram-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg,
.instagram-float svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse-animation-ig {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 36, 159, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(214, 36, 159, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(214, 36, 159, 0);
    }
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
}

.modal-icon i {
    width: 28px;
    height: 28px;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-blue);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--color-gold);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.modal-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text);
    opacity: 0.5;
    margin-top: 1.25rem;
}

@media (max-width: 992px) {

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

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

    .hero-title-premium {
        font-size: 3rem;
    }

    .cursive-gold {
        font-size: 3.5rem;
    }

    .hero-bg-image {
        width: 100%;
        height: 100%;
        opacity: 0.6;
        background-position: top center;
    }

    .hero-overlay-gradient {
        background: linear-gradient(180deg, rgba(11, 21, 18, 0.7) 0%, rgba(11, 21, 18, 0.85) 50%, #0b1512 100%);
    }

    .hero-text-premium {
        margin: 0 auto;
        text-align: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-buttons-premium {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .features-grid,
    .tours-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-label {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .timeline::before {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .country-tabs {
        position: sticky;
        top: var(--header-height, 100px);
        border-radius: 30px;
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
    }
}

/* =========================================
   SCROLL ANIMATIONS & EFFECTS
   ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Animation Delays for Staggered Effects */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* Interactive Hover Enhancements */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tour-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.15) rotate(5deg);
    background: var(--color-green);
    color: white;
}