/* ============================================================
   Lamoto Expo - Main Stylesheet
   Design: Modern | Clean | Premium | Light Theme
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary:       #42858C;
    --primary-light: #46A69C;
    --green:         #6CBF69;
    --olive:         #80A665;
    --gold:          #F2B33D;

    /* Dark palette (hero, footer, CTA) */
    --dark:          #0d1117;
    --dark-2:        #131b24;
    --dark-3:        #1a2535;
    --text-on-dark:  #e8f0f2;
    --muted-on-dark: #8aa5b0;

    /* Light palette (body, sections) */
    --bg:            #ffffff;
    --bg-2:          #f8f9fa;
    --bg-3:          #eef2f7;
    --text-dark:     #1e293b;
    --text-body:     #475569;
    --text-muted:    #64748b;
    --white:         #ffffff;

    /* Gradients */
    --grad-hero:    linear-gradient(135deg, #0d1117 0%, #131b24 40%, #1a2d35 70%, #0d1117 100%);
    --grad-primary: linear-gradient(135deg, #42858C 0%, #46A69C 100%);
    --grad-green:   linear-gradient(135deg, #6CBF69 0%, #80A665 100%);
    --grad-gold:    linear-gradient(135deg, #F2B33D 0%, #e09a28 100%);
    --grad-card:    linear-gradient(135deg, rgba(66,133,140,0.08) 0%, rgba(70,166,156,0.03) 100%);

    /* Cards / Glass (light theme) */
    --glass-bg:     #ffffff;
    --glass-border: rgba(0,0,0,0.07);
    --glass-shadow: 0 4px 24px rgba(0,0,0,0.08);

    /* Radius */
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  28px;
    --radius-xl:  48px;
    --radius-pill:9999px;

    /* Transitions */
    --trans-fast:  0.2s ease;
    --trans-med:   0.35s ease;
    --trans-slow:  0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Navbar */
    --navbar-h: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
}

::selection { background: var(--primary-light); color: var(--white); }

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

a { color: var(--primary); text-decoration: none; transition: color var(--trans-fast); }
a:hover { color: var(--primary-light); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

/* Headings inside dark sections stay light */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.stats-section h1,
.stats-section h2,
.cta-section h1,
.cta-section h2,
.cta-section h3,
.page-hero h1,
.page-hero h2,
footer h1, footer h2, footer h3,
footer h4, footer h5 {
    color: var(--text-on-dark);
}

.display-1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); letter-spacing: -0.02em; }
.display-3 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
.section-sub   { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; }

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: var(--radius-pill); }

/* ---- Navbar ---- */
#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    display: flex;
    align-items: center;
    transition: background var(--trans-med), backdrop-filter var(--trans-med), box-shadow var(--trans-med);
}

#mainNav.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.08);
}

.navbar-brand img { height: 44px; width: auto; }
.navbar-brand span {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--trans-fast) !important;
    letter-spacing: 0.01em;
}

/* Nav links darken when navbar is scrolled (over white bg) */
#mainNav.scrolled .nav-link {
    color: var(--text-dark) !important;
}
#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--grad-primary);
    border-radius: var(--radius-pill);
    transition: left var(--trans-med), right var(--trans-med);
}

.nav-link:hover,
.nav-link.active { color: var(--white) !important; }
.nav-link:hover::after,
.nav-link.active::after { left: 1rem; right: 1rem; }

.btn-nav-cta {
    background: var(--grad-primary);
    color: var(--white) !important;
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.4rem !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: transform var(--trans-fast), box-shadow var(--trans-fast) !important;
    box-shadow: 0 4px 16px rgba(66,133,140,0.4);
}
.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(66,133,140,0.55) !important;
}
.btn-nav-cta::after { display: none; }

/* Mobile toggler */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.25) !important;
    padding: 6px 10px !important;
}
#mainNav.scrolled .navbar-toggler {
    border: 1px solid rgba(0,0,0,0.15) !important;
}
.navbar-toggler-icon { filter: invert(1); }
#mainNav.scrolled .navbar-toggler-icon { filter: none; }

/* ---- Organic Background Shapes ---- */
.bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}
.shape-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #42858C, transparent 70%);
    top: -200px; right: -200px;
    animation: floatShape 12s ease-in-out infinite;
}
.shape-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #6CBF69, transparent 70%);
    bottom: -100px; left: -100px;
    animation: floatShape 16s ease-in-out infinite reverse;
}
.shape-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #F2B33D, transparent 70%);
    top: 40%; left: 40%;
    animation: floatShape 20s ease-in-out infinite 4s;
    opacity: 0.07;
}
.shape-4 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #46A69C, transparent 70%);
    bottom: 20%; right: 10%;
    animation: floatShape 14s ease-in-out infinite 2s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -30px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(0.97); }
}

/* Wave dividers */
.wave-divider {
    position: relative;
    line-height: 0;
    overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; }

/* ---- Buttons ---- */
.btn-lamoto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all var(--trans-med);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-lamoto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity var(--trans-fast);
}
.btn-lamoto:hover::before { opacity: 1; }

.btn-primary-lamoto {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(66,133,140,0.35);
}
.btn-primary-lamoto:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(66,133,140,0.5);
}

.btn-gold-lamoto {
    background: var(--grad-gold);
    color: #1a2535;
    box-shadow: 0 6px 24px rgba(242,179,61,0.35);
}
.btn-gold-lamoto:hover {
    color: #1a2535;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(242,179,61,0.5);
}

.btn-outline-lamoto {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-lamoto:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-2px);
}

/* Outline variant for light sections */
.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid rgba(0,0,0,0.2);
}
.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-green-lamoto {
    background: var(--grad-green);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(108,191,105,0.35);
}
.btn-green-lamoto:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(108,191,105,0.5);
}

/* ---- Cards (Light Theme) ---- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: transform var(--trans-med), box-shadow var(--trans-med), border-color var(--trans-med);
}
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
    border-color: rgba(66,133,140,0.25);
}

.card-icon-wrap {
    width: 60px; height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.icon-primary { background: rgba(66,133,140,0.12); color: var(--primary); }
.icon-green   { background: rgba(108,191,105,0.14); color: #3da639; }
.icon-gold    { background: rgba(242,179,61,0.14); color: #c9920a; }
.icon-olive   { background: rgba(128,166,101,0.14); color: var(--olive); }

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    padding-top: var(--navbar-h);
}

.hero-section.hero-with-image {
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-section.hero-with-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(13,17,23,0.88) 0%,
        rgba(13,17,23,0.70) 50%,
        rgba(13,17,23,0.55) 100%);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1.1rem;
    background: rgba(66,133,140,0.18);
    border: 1px solid rgba(66,133,140,0.5);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    color: #7dd3cb;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(108,191,105,0.5); }
    50%       { box-shadow: 0 0 0 8px rgba(108,191,105,0); }
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.hero-meta-item i { color: var(--gold); font-size: 1rem; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero abstract visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ring {
    position: relative;
    width: clamp(320px, 40vw, 520px);
    height: clamp(320px, 40vw, 520px);
}

.ring {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
}
.ring-1 {
    inset: 0;
    border-width: 1px;
    border-color: rgba(66,133,140,0.35);
    animation: spinSlow 20s linear infinite;
}
.ring-2 {
    inset: 15%;
    border-width: 1.5px;
    border-color: rgba(108,191,105,0.3);
    border-top-color: var(--green);
    animation: spinSlow 14s linear infinite reverse;
}
.ring-3 {
    inset: 30%;
    border-width: 2px;
    border-color: rgba(242,179,61,0.2);
    border-right-color: var(--gold);
    animation: spinSlow 10s linear infinite;
}
.ring-center {
    position: absolute;
    inset: 38%;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 60px rgba(66,133,140,0.6), 0 0 120px rgba(66,133,140,0.3);
}

.ring-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    top: 50%; left: 0;
    margin-top: -5px; margin-left: -5px;
    box-shadow: 0 0 12px var(--gold);
    transform-origin: calc(clamp(320px, 40vw, 520px) / 2) 5px;
    animation: spinSlow 14s linear infinite;
}
.ring-dot-2 {
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    top: 0; left: 50%;
    transform-origin: -5px calc(clamp(320px, 40vw, 520px) / 2);
    animation: spinSlow 20s linear infinite reverse;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ---- Stats Section ---- */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: var(--dark-2);
    overflow: hidden;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
}
.stat-number {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.95rem;
    color: var(--muted-on-dark);
    font-weight: 500;
}

/* ---- Section Styles ---- */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.section-header { margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(66,133,140,0.10);
    border: 1px solid rgba(66,133,140,0.25);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Light background sections */
.bg-section   { background: var(--bg) !important; }
.bg-section-2 { background: var(--bg-2) !important; }
.bg-section-3 { background: var(--bg-3) !important; }

/* Legacy dark background utilities (for hero/stats/cta) */
.bg-dark-2 { background: var(--dark-2); }
.bg-dark-3 { background: var(--dark-3); }

/* ---- Feature Cards ---- */
.feature-grid { display: grid; gap: 1.5rem; }
.feature-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans-med);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Highlight Cards ---- */
.highlight-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}
.highlight-card .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}
.highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}
.highlight-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    flex: 1;
}

/* ---- Image Highlight Block ---- */
.img-highlight {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.14);
    position: relative;
}
.img-highlight img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--trans-med);
}
.img-highlight:hover img { transform: scale(1.03); }

/* ---- Attraction Cards ---- */
.attraction-card {
    overflow: hidden;
    position: relative;
}
.attraction-img {
    height: 220px;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--trans-med);
}
.attraction-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--trans-med);
}
.attraction-card:hover .attraction-img img { transform: scale(1.06); }
.attraction-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.attraction-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.attraction-body { padding: 1.5rem; }
.attraction-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.attraction-body p { font-size: 0.88rem; color: var(--text-muted); }
.attraction-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.attraction-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.attraction-meta i { color: var(--gold); }

/* ---- Forms ---- */
.form-lamoto {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

.form-control-lamoto,
.form-select-lamoto {
    background: var(--bg-2);
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
    transition: border-color var(--trans-fast), background var(--trans-fast), box-shadow var(--trans-fast);
    width: 100%;
}
.form-control-lamoto:focus,
.form-select-lamoto:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(66,133,140,0.12);
    color: var(--text-dark);
}
.form-control-lamoto::placeholder { color: var(--text-muted); }
.form-select-lamoto option { background: var(--white); color: var(--text-dark); }
.form-label-lamoto {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}
.form-group { margin-bottom: 1.25rem; }
textarea.form-control-lamoto { resize: vertical; min-height: 120px; }

/* Alert messages */
.alert-lamoto {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: rgba(108,191,105,0.12); border: 1px solid rgba(108,191,105,0.35); color: #2d8a2a; }
.alert-error   { background: rgba(231,76,60,0.08); border: 1px solid rgba(231,76,60,0.25); color: #c0392b; }

/* ---- Partner Logos ---- */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}
.logo-item {
    padding: 1rem 1.75rem;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 64px;
    transition: all var(--trans-med);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo-item:hover {
    background: rgba(66,133,140,0.05);
    border-color: rgba(66,133,140,0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66,133,140,0.12);
}
.logo-item span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.logo-item img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: all var(--trans-med);
}
.logo-item:hover img { filter: grayscale(0); opacity: 1; }

/* ---- CTA Section ---- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark-3);
}
.cta-section .bg-shapes .shape { opacity: 0.22; }
.cta-section h2 { color: var(--white); }
.cta-section .section-sub { color: var(--muted-on-dark); }
.cta-section .section-tag {
    background: rgba(66,133,140,0.18);
    border-color: rgba(66,133,140,0.45);
    color: #7dd3cb;
}

/* ---- Footer ---- */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 0 0;
}

.footer-brand { margin-bottom: 1.5rem; }
.footer-brand span {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: var(--muted-on-dark);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.social-btn {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted-on-dark) !important;
    transition: all var(--trans-med);
}
.social-btn:hover {
    background: rgba(66,133,140,0.2);
    border-color: rgba(66,133,140,0.5);
    color: #7dd3cb !important;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a {
    color: var(--muted-on-dark);
    font-size: 0.9rem;
    transition: color var(--trans-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a:hover { color: #7dd3cb; }
.footer-links li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--trans-fast);
    font-size: 0.75rem;
}
.footer-links li a:hover::before { opacity: 1; transform: translateX(0); }

.footer-newsletter { margin-top: 0; }
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}
.newsletter-input {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-pill);
    color: var(--white);
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    transition: border-color var(--trans-fast);
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-light);
}
.newsletter-input::placeholder { color: var(--muted-on-dark); }

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

/* ---- Info Cards (Como Chegar) ---- */
.info-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.info-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.info-card p, .info-card ul {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.info-card ul { list-style: none; }
.info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0.3rem 0;
}
.info-card ul li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ---- Map Container ---- */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.map-container iframe { display: block; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    position: relative;
    padding: calc(var(--navbar-h) + 60px) 0 80px;
    background: var(--grad-hero);
    overflow: hidden;
    text-align: center;
}
.page-hero.page-hero-image {
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-hero.page-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13,17,23,0.75);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; color: var(--white); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto; }

/* ---- FAQ ---- */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    gap: 1rem;
    user-select: none;
    transition: color var(--trans-fast);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(66,133,140,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--trans-med), background var(--trans-med);
    font-size: 0.85rem;
    color: var(--primary);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(66,133,140,0.2);
}
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding var(--trans-med);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 0.75rem; }

/* ---- Benefits Grid ---- */
.benefit-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    align-items: flex-start;
}
.benefit-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.benefit-text h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--text-dark); }
.benefit-text p { font-size: 0.88rem; color: var(--text-muted); }

/* ---- Timeline / Schedule ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--green), transparent);
}
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}
.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--grad-primary);
    border: 2px solid var(--bg-2);
    box-shadow: 0 0 0 4px rgba(66,133,140,0.15);
}
.timeline-time {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.timeline-content h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text-dark); }
.timeline-content p { font-size: 0.86rem; color: var(--text-muted); }

/* ---- Table Styles ---- */
.table-lamoto {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
}
.table-lamoto th {
    background: rgba(66,133,140,0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid rgba(66,133,140,0.2);
}
.table-lamoto th:first-child { border-radius: var(--radius-md) 0 0 0; }
.table-lamoto th:last-child  { border-radius: 0 var(--radius-md) 0 0; }
.table-lamoto td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #f0f4f8;
    color: var(--text-body);
    vertical-align: middle;
}
.table-lamoto tbody tr:hover td { background: rgba(66,133,140,0.04); }

/* ---- Badges ---- */
.badge-lamoto {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-primary { background: rgba(66,133,140,0.12); color: var(--primary); }
.badge-green   { background: rgba(108,191,105,0.14); color: #2d8a2a; }
.badge-gold    { background: rgba(242,179,61,0.14); color: #a87008; }
.badge-red     { background: rgba(231,76,60,0.10); color: #c0392b; }

/* ---- Scroll Progress ---- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--grad-primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(66,133,140,0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--trans-med);
    z-index: 900;
    border: none;
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(66,133,140,0.55); }

/* ---- Reveal Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Category Filter Bar ---- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #e2e8f0;
    background: var(--white);
    color: var(--text-body);
    transition: all var(--trans-fast);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ---- Pricing Cards ---- */
.pricing-card {
    position: relative;
    overflow: hidden;
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 40px rgba(66,133,140,0.18);
}
.pricing-badge {
    position: absolute;
    top: 1.25rem; right: -2rem;
    background: var(--grad-primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
}
.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.price-period { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Contact Info Cards ---- */
.contact-info-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.contact-info-card .ci-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.contact-info-card h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.contact-info-card p,
.contact-info-card a { font-size: 0.9rem; color: var(--text-muted); }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-visual { display: none; }
    .hero-title  { font-size: clamp(2.2rem, 6vw, 3.2rem); }
    .section-pad { padding: 70px 0; }

    /* Mobile nav on top of hero: keep white bg always for readability */
    #mainNav {
        background: rgba(13,17,23,0.80);
        backdrop-filter: blur(12px);
    }
    #mainNav.scrolled {
        background: rgba(255,255,255,0.96);
    }
}

@media (max-width: 767.98px) {
    :root { --navbar-h: 68px; }
    .section-pad { padding: 55px 0; }
    .hero-section { padding-top: var(--navbar-h); min-height: 95vh; }
    .form-lamoto { padding: 1.75rem; }
    .stat-number { font-size: 2.4rem; }
    .btn-lamoto { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
    .highlight-card { padding: 2rem; }
    .newsletter-form { flex-direction: column; }
    .back-to-top { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 575.98px) {
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .hero-meta { gap: 1rem; }
}

/* ---- Utility Classes ---- */
.container-tight { max-width: 840px; margin: 0 auto; }
.divider { height: 1px; background: #e2e8f0; margin: 3rem 0; }
.text-primary-lamoto { color: var(--primary); }
.text-gold { color: #c9920a; }
.text-green { color: #2d8a2a; }
.rounded-lamoto { border-radius: var(--radius-lg); }

/* Audience profile bars */
.audience-bar-wrap { margin-bottom: 1rem; }
.audience-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 0.35rem;
    font-weight: 500;
}
.audience-bar-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: var(--radius-pill);
    overflow: hidden;
}
.audience-bar-fill {
    height: 100%;
    border-radius: var(--radius-pill);
    background: var(--grad-primary);
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0;
}
.audience-bar-fill.animated { width: var(--bar-w); }
