:root {
    --primary: #003264; /* Deep Navy */
    --primary-hover: #001f3f;
    --secondary: #ca8a04; /* Vibrant Golden Mustard */
    --accent: #facc15; /* Vibrant Yellow for Contrast */
    --accent-hover: #eab308;
    --dark: #111827; /* Matte Black */
    --light: #f8fafc;
    --text-main: #111827;
    --text-muted: #4b5563;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(15, 23, 42, 0.4); /* Mais transparente */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Mais sutil */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.logo {
    font-size: 1.5rem;
    color: var(--white);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--accent);
    color: var(--dark) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('Generated Image April 23, 2026 - 11_43PM.png');
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.3);
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.straight-divider {
    height: 40px;
    background: var(--white);
    width: 100%;
    margin-bottom: 0;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

#hero h1 {
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

#hero h1 span {
    display: block;
    color: var(--accent);
}

#hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary, .btn-whatsapp {
    background: var(--accent);
    color: var(--dark);
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(234, 179, 8, 0.2), 0 2px 4px -1px rgba(234, 179, 8, 0.1);
}

.btn-whatsapp:hover, .btn-primary:hover, .btn-secondary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(234, 179, 8, 0.3), 0 4px 6px -2px rgba(234, 179, 8, 0.15);
}

/* Services Section */
#services {
    padding: 5rem 0 8rem 0;
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    position: relative;
}

.cat-peeking-top {
    position: absolute;
    top: -120px; /* Voltei um pouco para o equilÃ­brio ideal */
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    z-index: 5;
    pointer-events: none;
    border-radius: 24px;
}

@media (max-width: 768px) {
    .cat-peeking-top {
        width: 260px;
        top: -82px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.975rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Flip Cards */
.service-card {
    perspective: 1200px;
    height: 280px; /* Reduzi um pouco a altura */
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.service-card-front {
    background: var(--white);
    border: 1px solid rgba(0, 50, 100, 0.07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-size: cover;
    background-position: center;
}

.service-card:not(.flipped):hover .service-card-front {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 50, 100, 0.14);
}

/* Background images per service card */
.service-grid .service-card:nth-child(1) .service-card-front {
    background-image: linear-gradient(rgba(255,255,255,0.84), rgba(255,255,255,0.91)), url('service_official_mgmt_1776803764297.png');
}
.service-grid .service-card:nth-child(2) .service-card-front {
    background-image: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.89)), url('service_uruguay_map_1776803783938.png');
}
.service-grid .service-card:nth-child(3) .service-card-front {
    background-image: linear-gradient(rgba(255,255,255,0.79), rgba(255,255,255,0.87)), url('service_eu_travel_1776803801192.png');
    background-position: center bottom;
}
.service-grid .service-card:nth-child(4) .service-card-front {
    background-image: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.90)), url('WhatsApp Image 2026-04-15 at 19.20.51.jpeg');
    background-position: center top;
}
.service-grid .service-card:nth-child(5) .service-card-front {
    background-image: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.92)), url('karin.png');
    background-position: center top;
}
.service-grid .service-card:nth-child(6) .service-card-front {
    background-image: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.89)), url('WhatsApp_Image_2025-09-14_at_12.22.21.jpeg');
    background-position: center top;
}

.service-card-back {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
    overflow-y: auto;
}

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

.sc-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(202, 138, 4, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(202, 138, 4, 0.1);
}

.sc-icon svg {
    width: 22px;
    height: 22px;
}

.service-card-front h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.2;
}

.service-card-front p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem; /* Margem controlada em vez de flex-grow */
}

.service-card-front p strong { color: var(--primary); font-weight: 600; }

.sc-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto; /* MantÃ©m no fundo, mas sem o vazio do flex-grow do p */
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    transition: gap 0.3s ease;
}

.service-card:hover .sc-hint {
    gap: 0.6rem;
}

.sc-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.sc-close:hover { background: rgba(255,255,255,0.3); }

.service-card-back h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-card-back p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

.service-card-back p strong { color: white; font-weight: 700; }

.sc-warning {
    font-size: 0.8rem !important;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    flex-grow: 0 !important;
}

.sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.sc-list li { font-size: 0.85rem; color: rgba(255,255,255,0.88); line-height: 1.5; }
.sc-list li strong { color: white; }

.sc-cta {
    display: block;
    margin-top: auto;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.sc-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* About / Stats Section */
#about {
    background: var(--white);
}

.about-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-title {
    font-size: clamp(1.25rem, 3.5vw, 1.65rem);
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.about-tagline {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: -1rem;
}

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

.stat-item {
    background: var(--light);
    border-radius: 16px;
    padding: 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(0, 50, 100, 0.07);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                background 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 16px 32px rgba(0, 50, 100, 0.12);
    border-color: var(--primary);
    background: var(--white);
}

.stat-item:hover .stat-number {
    color: var(--accent-hover);
    transition: color 0.3s ease;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
}

.vet-card {
    background: var(--light);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    border: 1px solid rgba(0, 50, 100, 0.08);
    box-shadow: 0 2px 12px rgba(0, 50, 100, 0.06);
}

.vet-photo {
    width: 88px;
    height: 88px;
    min-width: 88px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--primary);
}

.vet-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.vet-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: none;
    letter-spacing: -0.01em;
}

.vet-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
}

.vet-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-top: 0.2rem;
}

@media (min-width: 769px) {
    .about-inner {
        padding: 5rem 2rem;
        max-width: 860px;
    }
    .stats-row {
        gap: 1.5rem;
    }
    .stat-item {
        padding: 2rem 1rem;
    }
    .vet-card {
        padding: 2rem 2.5rem;
        gap: 2rem;
    }
    .vet-photo {
        width: 110px;
        height: 110px;
        min-width: 110px;
    }
    .vet-name { font-size: 1.35rem; }
    .vet-role { font-size: 0.95rem; }
    .vet-bio  { font-size: 0.95rem; }
}

/* Process Section */
#proceso {
    padding: 5rem 0 6rem;
    background: var(--light);
}

#proceso .section-header h2 {
    color: var(--dark);
}

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

/* Horizontal connector line through the number circles */
.proceso-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,50,100,0.25) 0%, rgba(0,50,100,0.08) 100%);
    z-index: 0;
}

.proceso-step {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 24px rgba(0, 50, 100, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.proceso-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 50, 100, 0.13);
}


.paso-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 50, 100, 0.28);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.proceso-steps.nums-ready .paso-num {
    opacity: 0;
    transform: scale(0) rotate(-15deg);
}

.proceso-steps.nums-animated .paso-num {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.proceso-steps.nums-animated .proceso-step:nth-child(1) .paso-num { transition-delay: 0s; }
.proceso-steps.nums-animated .proceso-step:nth-child(2) .paso-num { transition-delay: 0.15s; }
.proceso-steps.nums-animated .proceso-step:nth-child(3) .paso-num { transition-delay: 0.3s; }
.proceso-steps.nums-animated .proceso-step:nth-child(4) .paso-num { transition-delay: 0.45s; }

.paso-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 50, 100, 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paso-icon-final {
    background: rgba(234, 179, 8, 0.13);
    color: var(--accent-hover);
}

.proceso-step:hover .paso-icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 50, 100, 0.12);
}

.paso-icon svg {
    width: 26px;
    height: 26px;
}

.proceso-step h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.proceso-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 768px) {
    #proceso {
        padding: 4rem 0 9rem;
    }
    .proceso-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .proceso-steps::before {
        display: none;
    }
    .proceso-step {
        padding: 1.5rem 1rem 1.25rem;
    }
}

/* Recognition Section */
#recognition {
    background: #f0f4f8;
}

.recognition-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.recognition-title {
    text-align: center;
    font-size: clamp(1.25rem, 3.5vw, 1.7rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.recognition-title strong {
    color: var(--dark);
}

.recognition-title span {
    color: var(--primary);
}

.recognition-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.recognition-quote {
    font-size: 5rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.25;
    font-family: Georgia, serif;
    margin-bottom: -1.5rem;
}

.recognition-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recognition-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.recognition-text p strong {
    color: var(--dark);
    font-weight: 700;
}

.recognition-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 260px;
}

.mag-img {
    position: absolute;
    width: 160px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    background: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mag-back {
    transform: rotate(-6deg) translateX(-50px);
    z-index: 1;
    background: #e5e7eb;
}

.mag-front {
    transform: rotate(3deg) translateX(40px);
    z-index: 2;
}

.mag-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media (min-width: 769px) {
    .recognition-inner {
        padding: 6rem 2rem;
        gap: 3rem;
    }

    .recognition-grid {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .recognition-text {
        flex: 1;
    }

    .recognition-text p {
        font-size: 1.05rem;
    }

    .recognition-images {
        flex: 0 0 380px;
        height: 300px;
    }

    .mag-img {
        width: 200px;
        height: 270px;
    }

    .mag-back {
        transform: rotate(-6deg) translateX(-70px);
    }

    .mag-front {
        transform: rotate(3deg) translateX(50px);
    }
}

/* CTA Section */
#cta-section {
    padding: 4rem 0 8rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--dark) 0%, #1f2937 100%);
    padding: 5rem 2rem;
    border-radius: 32px;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#cta-button {
    background: var(--accent);
    color: var(--dark);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    border: none;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

#cta-button:hover {
    transform: scale(1.05);
    background: var(--accent-hover);
}

footer {
    background-color: var(--dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #9ca3af;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(234, 179, 8, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

#cta-button, .btn-primary, .btn-secondary {
    position: relative;
}

/* Remove shimmer effect */

header.header-scrolled {
    background: rgba(15, 23, 42, 0.98);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#destinations {
    background-color: var(--accent);
    padding: 8rem 0;
}

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

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

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 2rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.step-number {
    background: var(--primary);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 7px;
    box-shadow: 0 3px 10px rgba(0, 50, 100, 0.25);
}

.step-number svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
    display: block;
}

.step-info h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.destination-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #cbd5e1;
    font-size: 0.95rem;
}

.chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.accordion-item.active .chevron {
    transform: rotate(-135deg);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    overflow-y: auto; /* Permite scroll si la ventana es muy alta */
    padding: 2rem 0;
}

.modal-content {
    background-color: var(--white);
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.4s ease-out;
}

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

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.modal p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-note {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    margin-top: 1.5rem;
}

.card.clickable {
    cursor: pointer;
}

/* FAQ Section */
#faq {
    padding: 5rem 0 4rem;
    background: var(--light);
}

#faq .section-header h2 {
    color: var(--dark);
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 50, 100, 0.1);
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-header {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    color: var(--dark);
    gap: 1rem;
}

.faq-accordion .accordion-header:hover {
    background: rgba(0, 50, 100, 0.04);
}

.faq-accordion .accordion-item.active .accordion-header {
    color: var(--primary);
}

.faq-accordion .accordion-content {
    padding-left: 2rem;
    padding-right: 2rem;
}

.faq-accordion .accordion-item.active .accordion-content {
    max-height: 600px;
    padding-bottom: 1.75rem;
}

.faq-accordion .accordion-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.975rem;
}

.faq-accordion .accordion-content p strong {
    color: var(--primary);
}

/* Testimonials Section */
/* Instagram Section */
#instagram {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.insta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.insta-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.insta-logo-wrap {
    width: 52px;
    height: 52px;
}

.insta-logo-wrap svg {
    width: 52px;
    height: 52px;
}

.insta-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.insta-handle {
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insta-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.insta-stats-row {
    display: flex;
    gap: 2rem;
}

.insta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.insta-stat strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.insta-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-insta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(188, 24, 136, 0.25);
}

.btn-insta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(188, 24, 136, 0.4);
}

.insta-feed {
    display: flex;
    justify-content: center;
}

.insta-phone-frame {
    width: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    border: 6px solid #fff;
    outline: 1px solid rgba(0,0,0,0.08);
    max-height: 550px;
}

.insta-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

@media (max-width: 768px) {
    .insta-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .insta-logo-wrap {
        margin: 0 auto;
    }

    .insta-stats-row {
        justify-content: center;
    }

    .btn-insta {
        margin: 0 auto;
    }

    .insta-phone-frame {
        width: 240px;
        max-height: 380px;
    }
}

/* Section bridge strip */
.section-bridge {
    background: var(--primary);
    padding: 2.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.bridge-quote {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 600;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.bridge-quote span {
    color: var(--accent);
}

.bridge-paw {
    width: 36px;
    height: 36px;
    fill: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .bridge-paw { display: none; }
    .section-bridge { padding: 1.75rem 1.5rem; }
}

#testimonials {
    padding: 4rem 0 600px;
    background: #f8fafc url('GATO_ACENA.png') no-repeat bottom center;
    background-size: 80% auto;
    position: relative;
}

@media (max-width: 768px) {
    #testimonials {
        background-size: 90% auto;
        padding-bottom: 400px;
    }
}

.testimonials-track {
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    width: 320px;
    flex-shrink: 0;
}

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

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid rgba(0, 50, 100, 0.1);
}

.reviewer-info h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
    text-shadow: none;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: #FBBC04;
}

.review-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    flex-grow: 1;
}

/* Loading Bar Animation */
.loading-bar-wrapper {
    margin: 1.25rem auto 1.5rem;
    max-width: 238px;
    width: 100%;
    z-index: 3;
    position: relative;
}

.loading-track {
    height: 12px;
    background: rgba(255, 255, 255, 0.22);
    border: 2.5px solid rgba(255, 255, 255, 0.65);
    border-radius: 50px;
    position: relative;
    overflow: visible;
}

.loading-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4%;
    background: var(--accent);
    border-radius: 50px;
    animation: fillAnim 6.75s ease-in-out infinite;
    animation-fill-mode: both;
}

.loading-paw {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    animation: pawAnim 6.75s ease-in-out infinite;
    animation-fill-mode: both;
}

.loading-paw svg {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

.loading-label {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-top: 1.25rem;
}

@keyframes fillAnim {
    0%      { width: 4%;  opacity: 1; }
    65%     { width: 90%; opacity: 1; }
    75%     { width: 90%; opacity: 0; }
    75.1%   { width: 4%;  opacity: 0; }
    90%     { width: 4%;  opacity: 1; }
    100%    { width: 4%;  opacity: 1; }
}

@keyframes pawAnim {
    0%      { left: 4%;  opacity: 1; }
    65%     { left: 90%; opacity: 1; }
    75%     { left: 90%; opacity: 0; }
    75.1%   { left: 4%;  opacity: 0; }
    90%     { left: 4%;  opacity: 1; }
    100%    { left: 4%;  opacity: 1; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .form-container { padding: 1.5rem; }
    .grid { grid-template-columns: 1fr; }
    .modal-content { padding: 2rem; width: 95%; margin: 20% auto; }
    .cta-card h2 { font-size: 2.2rem; }
    
    .card { padding: 1.5rem; }
    .service-grid { gap: 1rem; }

    #hero {
        background-image: url('Generated Image April 23, 2026 - 11_43PM.png');
        background-position: 65% 45%;
        background-size: cover;
        align-items: stretch;
    }

    .hero-overlay {
        background: rgba(10, 18, 36, 0.3);
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding-top: 6rem;
        padding-bottom: 6.5rem; /* Aumentado para nÃ£o sobrepor o whatsapp */
        text-align: center;
    }

    #hero h1 { font-size: 1.9rem; }

    #hero p {
        margin-top: auto;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* Botón Volver al inicio */
#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    color: var(--text-muted);
    border: none;
    border-radius: 0;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover {
    color: var(--primary);
    background-color: transparent;
    transform: translateY(-3px);
}