/* ==========================================================================
   PISCICULTURA VÔ JAIR — Design System
   Stack: Vue 3 CDN + Bootstrap 5.3 + Vanilla CSS
   ========================================================================== */

/* --- Custom Properties (Design Tokens) --- */
:root {
    /* Brand Colors — extracted from logo */
    --brand-blue: #2CA4E3;
    --brand-blue-dark: #1a7bb5;
    --brand-blue-deeper: #0f5a8a;
    --brand-green: #C3F26D;
    --brand-green-dark: #9dd44a;

    /* Neutral Palette */
    --white: #ffffff;
    --gray-50: #f8fafb;
    --gray-100: #f0f4f7;
    --gray-200: #e2e8ed;
    --gray-300: #c8d3dc;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --surface: var(--white);
    --surface-alt: var(--gray-50);

    /* WhatsApp CTA */
    --whatsapp: #25D366;
    --whatsapp-hover: #1da851;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, .16);
    --shadow-brand: 0 8px 30px rgba(44, 164, 227, .25);

    /* Transitions */
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 500ms;
}


/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-smooth);
}


/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6,
.display-heading {
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.1;
    color: var(--text-primary);
}

.display-heading {
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: .08em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: .06em;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.7;
    max-width: 640px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: .75rem;
    display: inline-block;
}


/* --- Navbar --- */
.navbar-vojair {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: box-shadow var(--duration-normal) var(--ease-smooth),
        background var(--duration-normal) var(--ease-smooth);
    padding: .6rem 0;
    z-index: 1050;
}

.navbar-vojair.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, .97);
}

.navbar-vojair .navbar-brand img {
    height: 64px;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.navbar-vojair .navbar-brand:hover img {
    transform: scale(1.04);
}

.navbar-vojair .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: .875rem;
    color: var(--gray-700);
    padding: .5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.navbar-vojair .nav-link:hover,
.navbar-vojair .nav-link.active {
    color: var(--brand-blue);
    background: rgba(44, 164, 227, .06);
}

.navbar-vojair .btn-cta-nav {
    background: var(--whatsapp);
    color: var(--white);
    font-weight: 600;
    font-size: .85rem;
    padding: .5rem 1.25rem;
    border-radius: var(--radius-full);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: all var(--duration-fast) var(--ease-smooth);
    box-shadow: 0 2px 8px rgba(37, 211, 102, .3);
}

.navbar-vojair .btn-cta-nav:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
}


/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--brand-blue-deeper) 100%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
    filter: saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(15, 26, 42, .7) 0%,
            rgba(15, 26, 42, .5) 40%,
            rgba(15, 26, 42, .8) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-bottom: 60px;
    width: 100%;
}

.hero .display-heading {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.hero .display-heading .text-accent {
    color: var(--brand-green);
    display: inline;
}

.hero-description {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, .8);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .9rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, .9);
    font-size: .8rem;
    font-weight: 500;
}

.hero-badge i {
    color: var(--brand-green);
    font-size: .9rem;
}

.hero-image-side {
    position: relative;
}

.hero-card-floating {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-card-floating img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-card-floating .card-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    color: white;
    padding: .4rem .9rem;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .35rem;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Floating stat card */
.stat-float {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 1rem 1.4rem;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    animation: statPulse 4s ease-in-out infinite;
}

.stat-float.top-right {
    top: -15px;
    right: -20px;
    animation-delay: .5s;
}

.stat-float.bottom-left {
    bottom: 20px;
    left: -30px;
    animation-delay: 1.5s;
}

.stat-float .stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--brand-blue);
    line-height: 1;
}

.stat-float .stat-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .05em;
}

@keyframes statPulse {

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

    50% {
        transform: translateY(-6px) scale(1.02);
    }
}


/* --- CTA Buttons --- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--whatsapp);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 600ms var(--ease-smooth);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .45);
    color: var(--white);
}

.btn-whatsapp:hover::before {
    transform: translateX(100%);
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

.btn-outline-light-custom {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    font-size: .95rem;
    padding: .9rem 1.6rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
    color: white;
    transform: translateY(-1px);
}


/* --- Sections Common --- */
.section {
    padding: var(--section-py) 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.bg-light-custom {
    background: var(--surface-alt);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: white;
}


/* --- Benefits Cards --- */
.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--duration-normal) var(--ease-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    background: rgba(44, 164, 227, .08);
    color: var(--brand-blue);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.benefit-card:hover .benefit-icon {
    background: var(--brand-blue);
    color: var(--white);
    transform: scale(1.08);
}

.benefit-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: .6rem;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}


/* --- Species Section --- */
.species-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    aspect-ratio: 3/4;
}

.species-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.species-card .species-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, .85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background var(--duration-normal) var(--ease-smooth);
}

.species-card:hover .species-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, .9) 100%);
}

.species-card .species-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    color: white;
    letter-spacing: .05em;
    margin-bottom: .25rem;
}

.species-card .species-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
}

.species-card .species-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-green);
    color: var(--gray-900);
    font-weight: 700;
    font-size: .7rem;
    padding: .3rem .7rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: .04em;
}


/* --- About / Structure Section --- */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.about-experience-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--brand-blue);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--brand-green);
}

.about-experience-badge .label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .9;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: .95rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .35rem;
    width: 20px;
    height: 20px;
    background: rgba(44, 164, 227, .1);
    border-radius: 50%;
}

.check-list li::after {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 4px;
    top: .35rem;
    font-size: .72rem;
    color: var(--brand-blue);
    line-height: 20px;
}


/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deeper) 100%);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: var(--brand-green);
    border-radius: 50%;
    opacity: .1;
    filter: blur(60px);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-banner h2 {
    color: white;
    position: relative;
    z-index: 2;
}

.cta-banner .text-accent {
    color: var(--brand-green);
}

.cta-banner p {
    color: rgba(255, 255, 255, .85);
    position: relative;
    z-index: 2;
}

.cta-banner .btn-whatsapp {
    position: relative;
    z-index: 2;
    background: var(--white);
    color: var(--brand-blue);
    box-shadow: var(--shadow-lg);
}

.cta-banner .btn-whatsapp:hover {
    background: var(--brand-green);
    color: var(--gray-900);
}

.cta-notice {
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.cta-notice i {
    margin-right: .3rem;
}


/* --- Testimonials --- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all var(--duration-normal) var(--ease-smooth);
}

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

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: .75rem;
    font-size: .9rem;
}

.testimonial-text {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: .85rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: .88rem;
    color: var(--text-primary);
}

.testimonial-location {
    font-size: .78rem;
    color: var(--text-muted);
}


/* --- FAQ --- */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: .75rem;
    overflow: hidden;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.faq-item:hover {
    border-color: var(--brand-blue);
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background var(--duration-fast) var(--ease-smooth);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(44, 164, 227, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--brand-blue);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
    background: var(--brand-blue);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-smooth),
        padding var(--duration-normal) var(--ease-smooth);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* --- Map Section --- */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/7;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* --- Footer --- */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, .7);
    padding: 4rem 0 1.5rem;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5);
    max-width: 300px;
}

.footer h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .6rem;
}

.footer-links a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    transition: all var(--duration-fast) var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.footer-links a:hover {
    color: var(--brand-green);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: .88rem;
}

.footer-contact-item i {
    color: var(--brand-blue);
    font-size: 1rem;
    margin-top: .2rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: .6rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-social a:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
}


/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    transition: all var(--duration-normal) var(--ease-smooth);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 32px rgba(37, 211, 102, .55);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .45), 0 0 0 12px rgba(37, 211, 102, .12);
    }
}


/* --- Counters / Stats Section --- */
.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--brand-green);
    line-height: 1;
    margin-bottom: .25rem;
}

.stat-item .stat-label {
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .04em;
}


/* --- Service Area Tags --- */
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
}

.region-tag {
    padding: .4rem 1rem;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 500;
    background: rgba(44, 164, 227, .06);
    color: var(--brand-blue);
    border: 1px solid rgba(44, 164, 227, .12);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.region-tag:hover {
    background: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
}


/* --- Animations on Scroll (handled by Vue) --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-smooth),
        transform var(--duration-slow) var(--ease-smooth);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 100ms;
}

.fade-up.delay-2 {
    transition-delay: 200ms;
}

.fade-up.delay-3 {
    transition-delay: 300ms;
}

.fade-up.delay-4 {
    transition-delay: 400ms;
}


/* --- Responsive --- */
@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-image-side {
        margin-top: 2.5rem;
    }

    .stat-float {
        display: none;
    }

    .map-wrapper {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 767.98px) {
    .hero-badges {
        justify-content: center;
    }

    .hero-content .text-lg-start {
        text-align: center !important;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .section-header {
        text-align: center !important;
    }

    .section-header .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .benefit-card {
        padding: 1.5rem 1.25rem;
    }
}