/* ===================================
   Agência Loop - Premium Design System
   =================================== */

:root {
    /* Brand Colors - Vivid & Premium */
    --color-green-primary: #00D084;
    --color-green-accent: #05E095;
    --color-green-dark: #00A669;
    --color-dark: #0F172A;
    --color-dark-soft: #1E293B;
    --color-gray-text: #475569;
    --color-light: #F8FAFC;
    --color-white: #FFFFFF;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #00D084 0%, #05E095 100%);
    --gradient-brand-soft: linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, rgba(5, 224, 149, 0.05) 100%);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, hsla(158, 82%, 52%, 0.2) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(160, 80%, 60%, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(158, 82%, 52%, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(160, 80%, 60%, 0.1) 0px, transparent 50%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Depth */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 20px 40px -10px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
    --shadow-card-hover: 0 30px 60px -15px rgba(0, 208, 132, 0.15), 0 0 0 1px rgba(0, 208, 132, 0.1);
    --shadow-glow: 0 0 30px rgba(0, 208, 132, 0.4);

    /* Spacing */
    --spacing-container: 2rem;
    --spacing-section: 8rem;
    --radius-card: 24px;
    --radius-full: 9999px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Scrollbar for Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--color-green-primary) #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
    background: var(--color-green-primary);
    border-radius: 6px;
    border: 3px solid #FFFFFF;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-green-accent);
    /* Changed from soft to accent as soft is not defined */
}

/* Custom Text Selection */
::selection {
    background-color: var(--color-green-primary);
    color: #FFFFFF;
}

::-moz-selection {
    background-color: var(--color-green-primary);
    color: #FFFFFF;
}

/* Custom Zero-Delay Cursor (Desktop Only) */
@media (hover: hover) and (pointer: fine) {

    body,
    html {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%2300D084" stroke="white" stroke-width="2"><path d="M5.5 3.21l13.58 8.79-13.58 4.42V3.21z"/></svg>') 0 0, auto;
    }

    /* Circle cursor for interactive elements AND text/selection */
    a,
    button,
    .nav-link,
    .carousel-nav,
    input,
    textarea,
    select,
    label,
    .service-card,
    .pricing-card,
    ::selection,
    ::-moz-selection {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="%2300D084" stroke="white" stroke-width="2"><circle cx="12" cy="12" r="8"/></svg>') 12 12, pointer !important;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    /* Prevent horizontal scroll on html */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Ensure no horizontal overflow */
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
    position: relative;
    z-index: 2;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Increased z-index to ensure it's on top */
    background: rgba(0, 208, 132, 0.85);
    /* Green background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    /* Removed filter since logo is already white */
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    /* White text */
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Button Styles - Premium */
.btn-primary {
    background: var(--gradient-brand);
    color: var(--color-white);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px -5px rgba(0, 208, 132, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 208, 132, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-dark);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--color-green-primary);
    color: var(--color-green-primary);
}

.header .btn-primary {
    background: white;
    color: var(--color-green-primary);
    border: 1px solid white;
}

.header .btn-primary:hover {
    background: var(--color-green-soft);
    color: white;
    border-color: var(--color-green-soft);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section - Redesigned */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-light);
    background-image: var(--gradient-mesh);
    z-index: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 208, 132, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 208, 132, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: -20%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 8s infinite alternate;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 224, 149, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 10s infinite alternate-reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 208, 132, 0.1);
    color: var(--color-green-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-text);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.2), rgba(255, 255, 255, 0));
    backdrop-filter: blur(40px);
    z-index: 1;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
    background: linear-gradient(135deg, rgba(5, 224, 149, 0.15), rgba(255, 255, 255, 0));
    animation-delay: -2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 20%;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.1), rgba(255, 255, 255, 0));
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* Hero Stats */
.hero-stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    padding: 1.5rem 3rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin: 0 auto;
    width: fit-content;
}

.hero-stat {
    text-align: center;
    padding: 0 1.5rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-green-primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

/* Adjust font size for 'Cobertura' if needed */
.hero-stat:nth-child(3) .stat-value {
    font-size: 1.8rem;
    /* Slightly smaller for longer text */
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
}

/* Services Section - Glassmorphism 2.0 */
.services {
    padding: var(--spacing-section) 0;
    background: var(--color-light);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-gray-text);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem;
    border-radius: var(--radius-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 208, 132, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-brand-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-green-primary);
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: var(--gradient-brand);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.card-description {
    color: var(--color-gray-text);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.card-button {
    color: var(--color-green-primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    /* For anchor tags */
}

.card-button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.card-button:hover::after {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: var(--spacing-section) 0;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about .section-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-green-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(0, 208, 132, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

.slogan-highlight {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-gray-text);
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.slogan-main {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    display: block;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.about-features {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--color-dark-soft);
}

.feature-item svg {
    color: var(--color-green-primary);
    width: 20px;
    height: 20px;
}

/* Map Section - Tech Style */
.map-section {
    padding: var(--spacing-section) 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* City Cards Section - Stacking Effect */
.city-cards-container {
    padding: 2rem 0 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.city-card {
    position: sticky;
    top: calc(150px + (var(--i) * 20px));
    /* Staggered sticky position */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 208, 132, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-brand);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 208, 132, 0.1);
    position: absolute;
    right: -1rem;
    top: -1.5rem;
    line-height: 1;
    z-index: 1;
}

.card-city {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.card-state {
    font-size: 1rem;
    color: var(--color-green-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 -15px 40px rgba(0, 208, 132, 0.15);
}

/* Footer - Minimal */
.footer {
    background: var(--color-dark);
    padding: 3rem 0 1.5rem;
    /* Reduced padding */
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    max-width: 300px;
    margin-bottom: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-title {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-green-primary);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--color-green-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    /* Reduced margin */
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* Experience Badge - Enhanced */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
    /* Ensure space for floating */
}

.experience-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: float-badge 6s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.experience-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-brand);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.experience-badge:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 20px 50px rgba(0, 208, 132, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.experience-badge:hover::before {
    opacity: 1;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 208, 132, 0.2));
    transition: transform 0.3s ease;
}

.experience-badge:hover .badge-number {
    transform: scale(1.1);
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -10px;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Utility Animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(2.5);
        opacity: 0;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        padding: 1rem;
    }

    .hero-stats-container {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }

    .hero-divider {
        display: none;
    }

    /* Mobile Menu Styles */
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 208, 132, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease forwards;
    }

    .nav.active .nav-link {
        color: var(--color-white);
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }

    .nav.active .btn-primary {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Mobile Menu Toggle Animation */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        /* Ensure above active nav */
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: #ffffff;
        /* Explicitly white */
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav.active .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Adjust shape positions for mobile to prevent overflow/overlap */
    .shape-1 {
        right: -100px;
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        left: -80px;
        width: 150px;
        height: 150px;
        bottom: 50px;
    }

    .shape-3 {
        display: none;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-description {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-message {
    background: white;
    padding: 15px;
    border-radius: 20px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    transform-origin: bottom right;
    animation: message-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 1s;
    opacity: 0;
    transform: scale(0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.message-avatar {
    width: 30px;
    height: 30px;
    background: #00D084;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-avatar img {
    width: 18px;
    height: 18px;
}

.message-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.message-body {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--color-gray-text);
}

@keyframes pulse-green {
    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);
    }
}

@keyframes message-pop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-message {
        margin-left: 20px;
        max-width: 250px;
    }
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-section) 0;
    background: var(--color-light);
    overflow: hidden;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--color-gray-text);
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--color-green-primary);
}

.discount-badge {
    background: var(--color-green-primary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E2E8F0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: var(--color-green-primary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Carousel / Slider Styling */
.pricing-carousel-wrapper {
    margin-top: 2rem;
    position: relative;
    padding: 80px 0 100px;
    /* Increased vertical padding even more */
    width: 100%;
}

.pricing-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 60px 40px;
    /* Increased vertical padding inside the scroll container */
    scroll-behavior: smooth;
    /* Smooth scrolling for arrows */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    margin-top: -40px;
    /* Offset to keep things balanced */
}

.pricing-slider:active {
    cursor: grabbing;
}

.pricing-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Pricing Card - Glassmorphism */
.pricing-card {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    position: relative;
    user-select: none;
    /* Prevent text selection while dragging */
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px -15px rgba(0, 208, 132, 0.2);
    border-color: var(--color-green-primary);
    background: rgba(255, 255, 255, 0.9);
    z-index: 5;
}

.pricing-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark-soft);
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.period {
    color: var(--color-gray-text);
    font-size: 1rem;
}

.plan-benefit {
    font-size: 0.95rem;
    color: var(--color-gray-text);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
    min-height: 3em;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--color-dark-soft);
    font-size: 0.95rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--color-green-primary);
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    text-decoration: none;
}

/* Featured / Destaque Card */
.pricing-card.featured {
    border: 2px solid var(--color-green-primary);
    background: rgba(255, 255, 255, 0.85);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

/* Animations */
@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px -5px rgba(0, 208, 132, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 30px -5px rgba(0, 208, 132, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px -5px rgba(0, 208, 132, 0.3);
    }
}

.pricing-card:hover .plan-btn.btn-primary {
    animation: pulse-btn 1.5s infinite ease-in-out;
}

/* Gold border animation for featured plan */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
    background-size: 200% auto;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    animation: rotate-gradient 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card.featured:hover::after {
    opacity: 1;
}

@keyframes rotate-gradient {
    to {
        background-position: 200% center;
    }
}

/* Custom Plan specificity */
.pricing-card.custom .price-value {
    font-size: 2.2rem;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 208, 132, 0.2);
    color: var(--color-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.carousel-nav:hover {
    background: var(--color-green-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* Hide navigation on small screens if desired, or keep them */
@media (max-width: 1250px) {
    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }
}

/* Media Queries for pricing */
@media (max-width: 768px) {
    .pricing-card {
        flex: 0 0 300px;
        padding: 2rem 1.5rem;
    }

    .carousel-nav {
        display: none;
        /* Hide on mobile to rely on touch drag */
    }

    .pricing-carousel-wrapper {
        padding: 40px 0 60px;
    }
}

/* Location Selection Overlay */
.location-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.location-card {
    background: var(--color-green-primary);
    /* Green Background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slide-up-location 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    color: white;
    /* White text for everything inside */
}

@keyframes slide-up-location {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.location-logo {
    width: 120px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.location-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.location-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.location-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--color-dark);
}

.input-group input:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}


.btn-location-primary {
    background: white;
    color: var(--color-green-primary);
    border: none;
    padding: 1.2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-location-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #f8f8f8;
}

.btn-location-skip {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-location-skip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Location Status Bar */
.location-status-bar {
    background: var(--color-green-primary);
    color: white;
    padding: 1rem 0;
    font-weight: 500;
    transition: all 0.5s ease;
}

.location-status-bar.hidden {
    display: none;
}

.status-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.status-content svg {
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.status-notice {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .location-card {
        padding: 2rem;
    }

    .status-content {
        gap: 0.8rem;
        flex-direction: column;
    }
}

/* Music Toggle Button */
.music-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 208, 132, 0.2);
    color: var(--color-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.music-toggle:hover {
    transform: scale(1.1);
    background: white;
    border-color: var(--color-green-primary);
}

.music-toggle.playing .music-bars span {
    background: var(--color-green-primary);
    animation: music-bar-bounce 1s infinite ease-in-out;
}

.music-bars {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 15px;
}

.music-toggle.playing .music-bars {
    display: flex;
}

.music-toggle.playing .mute-icon {
    display: none;
}

.music-bars span {
    width: 3px;
    height: 100%;
}

.music-bars span:nth-child(2) {
    animation-delay: 0.2s;
}

.music-bars span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes music-bar-bounce {

    0%,
    100% {
        height: 5px;
    }

    50% {
        height: 15px;
    }
}

.mute-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .music-toggle {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}