/* ============================================================
   POSTOS GRALHA AZUL — Design System
   Premium Gas Station Network Website
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --primary: #012c5c;
    --primary-rgb: 1, 44, 92;
    --primary-light: #0a4a8a;
    --primary-lighter: #1565b8;
    --primary-dark: #001a3a;
    --primary-950: #00112a;

    --accent: #f5a700;
    --accent-rgb: 245, 167, 0;
    --accent-light: #ffbd33;
    --accent-lighter: #ffd166;
    --accent-dark: #cc8c00;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic */
    --success: #059669;
    --text: #1e293b;
    --text-light: #64748b;
    --text-inverse: #ffffff;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --tracking-tight: -0.025em;
    --tracking-tighter: -0.04em;

    /* Spacing */
    --section-y: clamp(4rem, 8vw, 7rem);
    --container-x: clamp(1rem, 4vw, 2rem);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 24px rgba(0, 0, 0, 0.05);

    /* Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 300ms;
    --duration-slow: 500ms;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--container-x);
    padding-right: var(--container-x);
}

.container--narrow {
    max-width: 960px;
}

.section {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.section--gray {
    background: var(--gray-50);
}

.section--dark {
    background: var(--primary);
    color: var(--text-inverse);
}

.section--gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--text-inverse);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-light { color: var(--text-light); }
.font-bold { font-weight: 700; }

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

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--gradient h1,
.section--gradient h2,
.section--gradient h3 {
    color: var(--text-inverse);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: var(--tracking-tighter); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-header .label i {
    font-size: 0.75rem;
}

.section-header p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 1rem;
}

.section--dark .section-header p,
.section--gradient .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 0.875rem;
    transition: transform var(--duration) var(--ease);
}

.btn:hover i {
    transform: translateX(2px);
}

.btn--primary {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.3);
}

.btn--primary:hover {
    background: var(--accent-light);
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.4);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.2);
}

.btn--secondary:hover {
    background: var(--primary-light);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
    transform: translateY(-1px);
}

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

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

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

.btn--outline-dark:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.04);
    transform: translateY(-1px);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    border-radius: var(--radius);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn--icon {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 0.625rem 0;
}

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

.navbar__logo img {
    height: 42px;
    width: auto;
    transition: height var(--duration) var(--ease);
}

.navbar.scrolled .navbar__logo img {
    height: 36px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar__link {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
}

.navbar.scrolled .navbar__link {
    color: var(--text);
}

.navbar__link:hover,
.navbar__link.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.navbar.scrolled .navbar__link:hover,
.navbar.scrolled .navbar__link.active {
    background: var(--gray-100);
    color: var(--primary);
}

.navbar__cta {
    margin-left: 0.5rem;
}

.navbar__cta .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

/* Mobile Menu Toggle */
.navbar__toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    background: none;
    color: var(--white);
    font-size: 1.25rem;
    border-radius: var(--radius);
}

.navbar.scrolled .navbar__toggle {
    color: var(--text);
}

/* Mobile Nav */
@media (max-width: 1024px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85vw, 380px);
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0.25rem;
        transition: right var(--duration-slow) var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }

    .navbar__menu.open {
        right: 0;
    }

    .navbar__link {
        color: var(--text);
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .navbar__link:hover,
    .navbar__link.active {
        background: var(--gray-100);
        color: var(--primary);
    }

    .navbar__cta {
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
    }

    .navbar__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--duration) var(--ease);
    }

    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }

    .navbar__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gray-100);
        color: var(--text);
        border-radius: var(--radius-full);
        font-size: 1rem;
        transition: all var(--duration) var(--ease);
    }

    .navbar__close:hover {
        background: var(--gray-200);
    }
}

@media (min-width: 1025px) {
    .navbar__close {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 17, 42, 0.92) 0%,
        rgba(1, 44, 92, 0.85) 40%,
        rgba(10, 74, 138, 0.7) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 167, 0, 0.15);
    border: 1px solid rgba(245, 167, 0, 0.3);
    color: var(--accent-light);
    padding: 0.4375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero__badge i {
    font-size: 0.6875rem;
}

.hero__title {
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

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

.hero__description {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat-number {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: var(--tracking-tighter);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.375rem;
    font-weight: 500;
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 2s ease-in-out infinite;
}

.hero__scroll i {
    font-size: 1rem;
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
}

@media (max-width: 640px) {
    .hero__stats {
        flex-direction: column;
        gap: 1.25rem;
    }
}

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-grid__image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-grid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-grid__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.about-grid__text h2 {
    margin-bottom: 1.25rem;
}

.about-grid__text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-grid__text p:last-of-type {
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature__icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-dark);
    border-radius: var(--radius);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.about-feature__text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--primary);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 167, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-bar__item {
    text-align: center;
    position: relative;
}

.stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
}

.stats-bar__number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: var(--tracking-tighter);
    line-height: 1;
}

.stats-bar__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar__item:not(:last-child)::after {
        display: none;
    }
}

/* ---------- Station Cards ---------- */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.station-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease);
    border: 1px solid var(--border);
}

.station-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.station-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.station-card:hover .station-card__image img {
    transform: scale(1.05);
}

.station-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.station-card__body {
    padding: 1.5rem;
}

.station-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.station-card__address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.station-card__address i {
    color: var(--accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.station-card__hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.station-card__hours i {
    font-size: 0.75rem;
}

.station-card__actions {
    display: flex;
    gap: 0.5rem;
}

.station-card__actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.8125rem;
    padding: 0.625rem 1rem;
}

@media (max-width: 480px) {
    .stations-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Services Section ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--duration) var(--ease);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.04));
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.service-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.service-card__text {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---------- Club CTA Section ---------- */
.club-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.club-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 167, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.club-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 167, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.club-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.club-grid__text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.club-grid__text > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.club-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.club-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.club-step__number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 167, 0, 0.15);
    border: 1px solid rgba(245, 167, 0, 0.3);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
}

.club-step__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.club-step__text strong {
    color: var(--white);
}

.club-grid__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.club-phone-mockup {
    width: 280px;
    background: var(--white);
    border-radius: 2.5rem;
    padding: 0.75rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.club-phone-mockup__screen {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2rem;
    padding: 2rem 1.25rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.club-phone-mockup__logo {
    width: 80px;
    margin-bottom: 1.5rem;
}

.club-phone-mockup__title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.club-phone-mockup__card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1rem;
    width: 100%;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(8px);
}

.club-phone-mockup__card-label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.club-phone-mockup__card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .club-grid {
        grid-template-columns: 1fr;
    }

    .club-grid__visual {
        order: -1;
    }

    .club-phone-mockup {
        width: 240px;
    }
}

/* ---------- Map Section ---------- */
.map-section__wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.map-section__wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 640px) {
    .map-section__wrapper iframe {
        height: 300px;
    }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 167, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration) var(--ease);
}

.page-hero__breadcrumb a:hover {
    color: var(--accent);
}

.page-hero__breadcrumb i {
    font-size: 0.625rem;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    max-width: 600px;
    line-height: 1.7;
}

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

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

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.8125rem 1rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--text);
    transition: all var(--duration) var(--ease);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-file {
    position: relative;
}

.form-file input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-file__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-size: 0.9375rem;
    transition: all var(--duration) var(--ease);
    cursor: pointer;
}

.form-file__label:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.02);
}

.form-file__label i {
    font-size: 1.25rem;
}

/* ---------- Form Alerts ---------- */
.form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    line-height: 1.5;
    animation: alertSlide 0.3s var(--ease-out);
}

.form-alert i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@keyframes alertSlide {
    from { opacity: 0; transform: translateY(-0.5rem); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding-top: clamp(3rem, 6vw, 5rem);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: 3rem;
}

.footer__brand img {
    height: 40px;
    margin-bottom: 1.25rem;
}

.footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 0.5rem;
}

.footer__social a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--duration) var(--ease);
    font-size: 0.9375rem;
}

.footer__social a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer__links li {
    margin-bottom: 0.625rem;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--duration) var(--ease);
}

.footer__links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer__contact-item i {
    color: var(--accent);
    margin-top: 0.25rem;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__brand {
        grid-column: span 1;
    }
}

/* ---------- Back to Top ---------- */
.backtop {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 900;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--duration) var(--ease);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    cursor: pointer;
    border: 1px solid var(--gray-700);
}

.backtop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.backtop:hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
}

/* ---------- LGPD Cookie Consent ---------- */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 100%;
    max-width: 300px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: all 0.4s var(--ease);
}

.cookie-consent.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.cookie-consent__title i {
    color: var(--accent);
    font-size: 0.75rem;
}

.cookie-consent__text {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.875rem;
}

.cookie-consent__text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__text a:hover {
    color: var(--accent-dark);
}

.cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-consent__actions button {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.cookie-consent__btn-accept {
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
}

.cookie-consent__btn-accept:hover {
    background: var(--accent-light);
}

.cookie-consent__btn-settings {
    background: var(--gray-100);
    color: var(--text);
    border: 1px solid var(--border);
}

.cookie-consent__btn-settings:hover {
    background: var(--gray-200);
}

@media (max-width: 480px) {
    .cookie-consent {
        right: 0.75rem;
        left: 0.75rem;
        max-width: none;
        width: auto;
        bottom: 1rem;
    }
    .backtop {
        bottom: 1rem;
        left: 1rem;
    }
}

/* ---------- Legal Content ---------- */
.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.0625rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.375rem;
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--accent-dark);
}

/* ---------- Station Detail Page ---------- */
.station-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.station-detail__image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xl);
}

.station-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.station-detail__info h2 {
    margin-bottom: 0.5rem;
}

.station-detail__address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.station-detail__address i {
    color: var(--accent);
    margin-top: 0.3rem;
}

.station-detail__hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(5, 150, 105, 0.06);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: var(--radius-lg);
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.station-detail__services {
    margin-bottom: 2rem;
}

.station-detail__services h4 {
    margin-bottom: 0.75rem;
}

.station-detail__services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.station-detail__services-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.875rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
}

.station-detail__services-list span i {
    color: var(--accent);
    font-size: 0.6875rem;
}

.station-detail__map {
    margin-top: 2rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.station-detail__map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .station-detail {
        grid-template-columns: 1fr;
    }
}

/* ---------- Promotions ---------- */
.promo-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 167, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.promo-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(245, 167, 0, 0.2);
    color: var(--accent);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.promo-card h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    will-change: opacity, transform;
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
}
.reveal-right {
    opacity: 0;
    transform: translateX(24px);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: none;
    will-change: auto;
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 360ms; }
.reveal-delay-4 { transition-delay: 480ms; }
.reveal-delay-5 { transition-delay: 600ms; }

/* Page hero entrance */
.page-hero .container {
    animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroEntrance {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        transition-duration: 0.01ms !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .page-hero .container {
        animation-duration: 0.01ms !important;
    }
}

/* Counter animation */
[data-count] {
    display: inline-block;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(1, 44, 92, 0.7);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn--secondary {
    background: var(--primary);
}

/* ---------- Contact Info Cards ---------- */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--duration) var(--ease);
}

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

.contact-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    margin: 0 auto 1rem;
}

.contact-card h4 {
    margin-bottom: 0.375rem;
}

.contact-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--accent-dark);
}

/* ---------- Contact Channels (Hub) ---------- */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-channel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
}

.contact-channel:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.contact-channel__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-channel h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-channel p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.contact-channel__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap var(--duration) var(--ease);
}

.contact-channel:hover .contact-channel__link {
    color: var(--accent-dark);
    gap: 0.625rem;
}

@media (max-width: 768px) {
    .contact-channels {
        grid-template-columns: 1fr;
    }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-900);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 999px;
    border: 2px solid var(--gray-900);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) var(--gray-900);
}

/* ---------- Selection ---------- */
::selection {
    background: var(--accent);
    color: var(--primary-dark);
}

/* ---------- Focus visible ---------- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ---------- Smooth scroll ---------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

/* ---------- Image enhancements ---------- */
img {
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Tap highlights mobile ---------- */
@media (max-width: 768px) {
    a, button {
        -webkit-tap-highlight-color: rgba(245, 167, 0, 0.15);
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Print ---------- */
@media print {
    .navbar,
    .backtop,
    .cookie-consent,
    .hero__scroll,
    .cta-banner {
        display: none !important;
    }
    .section {
        break-inside: avoid;
    }
}
