/* ============================================================
   ESCOLA RAIO DE SOL — Institutional Website
   Premium Styles
   ============================================================ */

/* === CSS VARIABLES === */
:root {
    --yellow: #F5A623;
    --yellow-light: #fce6b4;
    --yellow-dark: #d4891a;

    --blue-royal: #1E3A8A;
    --blue-dark: #152b66;
    --blue-celeste: #3B82F6;
    --green: #10B981;
    --green-dark: #059669;
    --purple: #8B5CF6;
    --orange: #EA580C;
    --orange-dark: #c2410c;
    --white: #FFFFFF;
    --gray: #374151;
    --gray-light: #6B7280;
    --gray-bg: #F9FAFB;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-yellow: 0 8px 30px rgba(245,166,35,0.3);
    --shadow-blue: 0 8px 30px rgba(30,58,138,0.25);
    --shadow-green: 0 8px 30px rgba(16,185,129,0.25);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    --max-width: 1200px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--yellow);
    color: var(--blue-royal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--yellow);
    background: rgba(245, 166, 35, 0.1);
    padding: 7px 22px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    border: 1px solid rgba(245, 166, 35, 0.12);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--blue-royal);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--yellow);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), transparent);
    border-radius: 2px;
    opacity: 0.25;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--yellow);
}

/* === DECORATIVE SHAPES === */
.section-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--yellow) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.section-dots.tr {
    top: 30px;
    right: 30px;
}

.section-dots.bl {
    bottom: 30px;
    left: 30px;
}

/* === BUTTONS === */
.btn-hero {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: var(--green);
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 42px;
    border-radius: var(--radius-xl);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    line-height: 1.3;
    animation: pulse-btn-hero 2s ease-in-out infinite;
}

@keyframes pulse-btn-hero {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 18px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #059669, var(--green));
    opacity: 0;
    transition: var(--transition);
    border-radius: inherit;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    animation: none;
}

.btn-hero:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-hero i,
.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-sub {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue-royal);
    color: var(--white);
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--blue-royal);
    font-weight: 600;
    padding: 13px 28px;
    border: 2px solid var(--blue-royal);
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: var(--blue-royal);
    color: var(--white);
    transform: translateY(-2px);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray);
    color: white;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--gray);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-text {
    color: var(--blue-royal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--gray);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--blue-royal);
    background: rgba(30,58,138,0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--blue-royal);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-royal);
    overflow: hidden;
    padding: 120px 24px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(245,166,35,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-sunrays {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(245,166,35,0.1) 0%, transparent 65%);
    animation: sun-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sun-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    33% { transform: scale(1.05) rotate(3deg); opacity: 0.9; }
    66% { transform: scale(0.98) rotate(-2deg); opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(245,166,35,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    margin-bottom: 28px;
    display: inline-block;
}

.hero-logo {
    width: auto;
    max-height: 360px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--yellow), #fbbf24, var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.95);
}

.badge i {
    font-size: 0.9rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === CTA CORRIDA BANNER === */
.cta-corrida {
    background: linear-gradient(135deg, var(--blue-royal) 0%, #1a2f6d 50%, var(--blue-dark) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--yellow);
    border-bottom: 4px solid var(--yellow);
}

.cta-corrida::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(245,166,35,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.cta-corrida::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(245,166,35,0.05) 0%, transparent 60%);
    animation: sun-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-corrida .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.cta-corrida-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.15);
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 7px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(245,166,35,0.25);
}

.cta-corrida-badge i {
    font-size: 0.9rem;
}

.cta-corrida-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cta-corrida-title span {
    color: var(--yellow);
    position: relative;
}

.cta-corrida-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    opacity: 0.25;
}

.cta-corrida-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 680px;
    line-height: 1.7;
}

.cta-corrida-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

/* === ABOUT SECTION === */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--blue-royal);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-yellow .stat-icon { background: rgba(245,166,35,0.12); color: var(--yellow); }
.stat-green .stat-icon { background: rgba(16,185,129,0.12); color: var(--green); }
.stat-blue .stat-icon { background: rgba(59,130,246,0.12); color: var(--blue-celeste); }
.stat-orange .stat-icon { background: rgba(234,88,12,0.12); color: var(--orange); }

.stat-yellow { border-bottom-color: var(--yellow); }
.stat-green { border-bottom-color: var(--green); }
.stat-blue { border-bottom-color: var(--blue-celeste); }
.stat-orange { border-bottom-color: var(--orange); }

.stat-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-royal);
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* === HISTORY / TIMELINE === */
.history {
    background: var(--gray-bg);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--yellow), var(--green), var(--blue-celeste), var(--orange));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--yellow);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--yellow), var(--shadow-sm);
    z-index: 2;
}

.dot-green { background: var(--green); box-shadow: 0 0 0 4px var(--green), var(--shadow-sm); }
.dot-blue { background: var(--blue-celeste); box-shadow: 0 0 0 4px var(--blue-celeste), var(--shadow-sm); }
.dot-orange { background: var(--orange); box-shadow: 0 0 0 4px var(--orange), var(--shadow-sm); }

.timeline-content {
    width: calc(50% - 40px);
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    background: var(--blue-royal);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue-royal);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Modalidades Grid - 2 columns layout */
.modalidades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 50px;
}

.modalidades-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .modalidades-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modalidades-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .modalidades-grid,
    .modalidades-grid-3 {
        grid-template-columns: 1fr;
    }
}

.mod-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 5px solid;
    display: flex;
    flex-direction: column;
}

.mod-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-green { border-top-color: var(--green); }
.card-blue { border-top-color: var(--blue-celeste); }
.card-purple { border-top-color: var(--purple); }
.card-orange { border-top-color: var(--orange); }
.card-yellow { border-top-color: var(--yellow); }

/* Card gradient overlays */
.card-green::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, rgba(16,185,129,0.05), transparent 70%);
    pointer-events: none;
}
.card-blue::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, rgba(59,130,246,0.05), transparent 70%);
    pointer-events: none;
}
.card-purple::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, rgba(139,92,246,0.05), transparent 70%);
    pointer-events: none;
}
.card-orange::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, rgba(234,88,12,0.05), transparent 70%);
    pointer-events: none;
}

.mod-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.card-green .mod-icon { background: rgba(16,185,129,0.1); color: var(--green); }
.card-blue .mod-icon { background: rgba(59,130,246,0.1); color: var(--blue-celeste); }
.card-purple .mod-icon { background: rgba(139,92,246,0.1); color: var(--purple); }
.card-yellow .mod-icon { background: rgba(245,166,35,0.1); color: var(--yellow); }
.card-orange .mod-icon { background: rgba(234,88,12,0.1); color: var(--orange); }

.mod-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.card-green .mod-tag { color: var(--green); }
.card-blue .mod-tag { color: var(--blue-celeste); }
.card-purple .mod-tag { color: var(--purple); }
.card-orange .mod-tag { color: var(--orange); }

.mod-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue-royal);
    margin-bottom: 4px;
}

.mod-card h3 i {
    display: none;
}

.mod-subtitle {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.mod-card > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.mod-diffs {
    margin-bottom: 24px;
}

.mod-diffs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray);
    padding: 6px 0;
}

.mod-diffs li i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.card-green .mod-diffs li i { color: var(--green); }
.card-blue .mod-diffs li i { color: var(--blue-celeste); }
.card-purple .mod-diffs li i { color: var(--purple); }
.card-orange .mod-diffs li i { color: var(--orange); }

.btn-mod {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 10px 0;
}

.card-green .btn-mod { color: var(--green); }
.card-blue .btn-mod { color: var(--blue-celeste); }
.card-purple .btn-mod { color: var(--purple); }
.card-orange .btn-mod { color: var(--orange); }

.btn-mod:hover { gap: 14px; }

.modalidades-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(245,166,35,0.05), rgba(30,58,138,0.05));
    padding: 40px;
    border-radius: var(--radius-lg);
}

.modalidades-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--blue-royal);
    margin-bottom: 20px;
}

.modalidades-cta p i {
    color: var(--yellow);
    margin-right: 8px;
}

/* === DIFERENCIAIS SECTION === */
.diferenciais {
    background: var(--gray-bg);
}

.diffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.diff-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(245,166,35,0.03));
    pointer-events: none;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.diff-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.diff-card:hover .diff-icon {
    transform: scale(1.15) rotate(-5deg);
}

.diff-yellow { background: rgba(245,166,35,0.12); color: var(--yellow); }
.diff-green { background: rgba(16,185,129,0.12); color: var(--green); }
.diff-blue { background: rgba(59,130,246,0.12); color: var(--blue-celeste); }
.diff-orange { background: rgba(234,88,12,0.12); color: var(--orange); }
.diff-purple-icon { background: rgba(139,92,246,0.12); color: var(--purple); }

.diff-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-royal);
    margin-bottom: 10px;
}

.diff-card p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* === DEPOIMENTOS SECTION === */
.depoimentos {
    background: var(--white);
}

.testimonials-carousel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 48px 36px;
    background: linear-gradient(135deg, var(--gray-bg), var(--white));
    border-radius: var(--radius-lg);
    animation: fadeIn 0.5s ease-out;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-md);
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 24px;
}

.quote-icon {
    font-size: 2.8rem;
    color: var(--yellow);
    opacity: 0.15;
    margin-bottom: 12px;
}

.testimonial-quote p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--gray-light);
}

.testimonial-author strong {
    color: var(--blue-royal);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--blue-royal);
    background: transparent;
    color: var(--blue-royal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--blue-royal);
    color: var(--white);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    opacity: 1;
    background: var(--yellow);
    width: 32px;
    border-radius: 6px;
}

/* === CTA FINAL === */
.cta-final {
    background: linear-gradient(135deg, var(--yellow) 0%, #f59e0b 40%, var(--orange) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-sun {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-title .highlight {
    color: var(--blue-royal);
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
}

.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--blue-royal);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 20px 48px;
    border-radius: 60px;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
    animation: pulse-btn 2s infinite;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(30,58,138,0.4);
    animation: none;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 8px 30px rgba(30,58,138,0.3); }
    50% { box-shadow: 0 8px 40px rgba(30,58,138,0.5); }
}

.btn-cta-phone {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.cta-badge i {
    font-size: 0.9rem;
}

/* === CONTATO SECTION === */
.contato {
    background: var(--gray-bg);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contato-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

.contato-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contato-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contato-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(245,166,35,0.08);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contato-item:hover .contato-icon {
    background: rgba(245,166,35,0.15);
    transform: scale(1.05);
}

.contato-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-royal);
    margin-bottom: 4px;
}

.contato-item p, .contato-item a {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

.contato-item a:hover {
    color: var(--yellow);
}

.contato-btns {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contato-map {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
    display: flex;
}

.contato-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-lg);
}

/* === FOOTER === */
.footer {
    background: var(--blue-royal);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--yellow);
    margin-bottom: 16px;
}

.footer-slogan {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--yellow);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--yellow);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--yellow);
    padding-left: 4px;
}

.footer-col ul li a i {
    width: 16px;
    font-size: 0.8rem;
}

.footer-contact li {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact li i {
    margin-top: 4px;
    color: var(--yellow);
}

.footer-contact li a {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245,166,35,0.15);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--yellow);
    color: var(--blue-royal);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 4px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-credits i {
    color: var(--yellow);
}

/* ============================================================
   RESPONSIVE — Mobile-First
   ============================================================ */

/* === BASE MOBILE (padrão) === */
html {
    scroll-padding-top: 70px;
}

.container {
    padding: 0 16px;
}

.section {
    padding: 50px 0;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 1.6rem;
}

.section-subtitle {
    font-size: 0.95rem;
}

.hero-title {
    font-size: 1.8rem;
}

.hero-subtitle {
    font-size: 0.95rem;
}

.hero-logo {
    max-height: 130px;
}

.hero {
    padding: 100px 16px 50px;
    min-height: auto;
}

.hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge {
    font-size: 0.78rem;
    padding: 6px 16px;
}

.btn-hero {
    font-size: 0.95rem;
    padding: 14px 24px;
    width: 100%;
    max-width: 360px;
}

/* NAVBAR mobile */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    align-items: flex-start;
    gap: 4px;
}

.nav-menu.open {
    right: 0;
}

.nav-link {
    color: var(--gray);
    width: 100%;
    padding: 12px 16px;
}

.nav-link:hover, .nav-link.active {
    background: rgba(30,58,138,0.08);
    color: var(--blue-royal);
}

.nav-toggle {
    display: flex;
    z-index: 1000;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* GRIDS — mobile (1 coluna padrão) */
.about-content {
    grid-template-columns: 1fr;
    gap: 32px;
}

.about-stats {
    grid-template-columns: 1fr;
}

.modalidades-grid,
.modalidades-grid-3 {
    grid-template-columns: 1fr;
}

.diffs-grid {
    grid-template-columns: 1fr;
}

.contato-grid {
    grid-template-columns: 1fr;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

/* TIMELINE mobile */
.timeline::before {
    left: 20px;
}

.timeline-dot {
    left: 20px;
}

.timeline-content {
    width: calc(100% - 45px);
    margin-left: 45px !important;
    padding: 16px;
}

.timeline-content h4 {
    font-size: 1rem;
}

/* CARDS mobile */
.stat-card {
    padding: 24px 16px;
}

.mod-card {
    padding: 24px 16px;
}

.diff-card {
    padding: 28px 20px;
}

/* CTA CORRIDA mobile */
.cta-corrida-title {
    font-size: 1.4rem;
}

.cta-corrida-text {
    font-size: 0.95rem;
}

.cta-corrida-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cta-corrida-actions .btn-hero {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.cta-corrida-btn {
    font-size: 1.1rem !important;
    padding: 16px 36px !important;
}

/* === CORRIDA PAGE SPECIFIC === */
.corrida-hero {
    min-height: 80vh !important;
    padding-top: 120px !important;
}

.corrida-inline-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.corrida-price-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--yellow);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 20px 0 24px;
}

.corrida-price-tag span {
    color: var(--yellow);
}

.corrida-hero-actions {
    margin-top: 20px;
}

/* Grid 3 colunas corrida - tem wrapper para controlar responsivamente */
.corrida-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.corrida-grid-3-center {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .corrida-grid-3,
    .corrida-grid-3-center {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) {
    .corrida-grid-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .corrida-grid-3-center {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Valor destaque inscrição */
.corrida-price-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.corrida-price-hero-inner {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.corrida-price-hero-inner span {
    font-size: 2rem;
}

/* Premiações */
.premiacoes-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
}

.premiacao-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid;
    overflow: hidden;
    height: 100%;
}

.premiacao-card.card-pink {
    border-top-color: #ec4899;
}

.premiacao-card.card-blue {
    border-top-color: var(--blue-celeste);
}

.premiacao-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.premiacao-card.card-pink .card-title {
    color: #ec4899;
}

.premiacao-card.card-blue .card-title {
    color: var(--blue-royal);
}

.premiacao-card .faixa-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
    font-size: 0.9rem;
}

.premiacao-card .faixa-item:last-child {
    border-bottom: none;
}

.premiacao-card .faixa-idade {
    font-weight: 600;
    color: var(--gray);
}

.premiacao-card .faixa-trofeu {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--yellow);
    font-weight: 600;
}

.premiacao-destaque {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.05rem;
    color: var(--gray-light);
}

.premiacao-destaque i {
    color: var(--yellow);
    margin-right: 4px;
}

@media (max-width: 768px) {
    .premiacoes-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .premiacao-card {
        padding: 20px 16px;
    }

    .premiacao-card .faixa-item {
        padding: 7px 0;
        font-size: 0.85rem;
    }

    .premiacao-card .faixa-trofeu {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .premiacoes-wrapper {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .premiacao-card {
        padding: 18px 14px;
    }
}

/* Blocos do formulário */
.form-block {
    margin-bottom: 35px;
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

.form-block-title {
    font-size: 1.25rem;
    color: var(--blue-royal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-block-step {
    background: var(--blue-royal);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    box-sizing: border-box;
    background: white;
}

.form-select {
    background: white;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 8px;
}

.resumo-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    overflow-x: hidden;
}

.resumo-title {
    font-size: 1rem;
    color: var(--blue-royal);
    margin-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.resumo-total-row {
    border-top: 2px dashed #cbd5e1;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.resumo-total-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.resumo-total-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
}

.resumo-pagamento-info {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.termos-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
}

.termos-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--blue-royal);
}

.termos-text {
    opacity: 0.6;
}

.btn-submit-pix {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-pix:disabled {
    background: #9ca3af;
    color: white;
    cursor: not-allowed;
}

.btn-submit-pix:not(:disabled) {
    background: var(--green);
    color: white;
}

.btn-submit-pix:not(:disabled) {
    animation: pulse-btn-submit 1.8s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
}

@keyframes pulse-btn-submit {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 16px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pix-feedback {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: var(--green);
    display: none;
}

.msg-aviso {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    display: block;
}

.info-pagamento-box {
    background: rgba(16, 185, 129, 0.05);
    border: 2px dashed var(--green);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.info-pagamento-box h3 {
    color: var(--green-dark);
    margin-bottom: 12px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    text-align: left;
}

.info-card h4 {
    color: var(--blue-royal);
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-card p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.info-list {
    text-align: left;
    font-size: 0.85rem;
    color: var(--gray-light);
    list-style: disc;
    padding-left: 20px;
    line-height: 1.6;
}

/* FAQ */
.faq-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.faq-summary {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--blue-royal);
}

.faq-answer {
    margin-top: 12px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* CTA final corrida */
.cta-corrida-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-corrida-final h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-corrida-final p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
}

.cta-corrida-small {
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Grid de 3 colunas para dados dos participantes */
.part-grid-3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

/* Opções de pagamento responsivas */
.pag-option-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

@media (min-width: 601px) and (max-width: 992px) {
    .part-grid-3 {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .pag-label-text {
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .pag-option-label {
        flex-wrap: wrap;
        gap: 8px;
    }
    .pag-label-text {
        white-space: normal !important;
        font-size: 0.9rem;
    }
    .pag-label-desc {
        margin-left: 0 !important;
        width: 100%;
        text-align: left !important;
        padding-left: 30px;
    }
    .part-grid-3 {
        grid-template-columns: 1fr;
    }

    .corrida-price-tag {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .corrida-price-hero-inner {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .corrida-price-hero-inner span {
        font-size: 1.5rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .corrida-grid-3,
    .corrida-grid-3-center {
        grid-template-columns: 1fr !important;
    }

    .cta-corrida-final h2 {
        font-size: 1.5rem;
    }

    .cta-corrida-final p {
        font-size: 1rem;
    }

    .form-block-title {
        font-size: 1.1rem;
    }

    .resumo-total-value {
        font-size: 1.2rem;
    }

    .info-pagamento-box {
        padding: 20px 16px;
    }

    .corrida-hero {
        min-height: auto !important;
        padding-top: 100px !important;
    }
}

@media (min-width: 601px) and (max-width: 992px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .corrida-price-tag {
        font-size: 1rem;
        padding: 8px 16px;
    }
    .corrida-price-hero-inner {
        font-size: 1rem;
        padding: 10px 16px;
    }
    .corrida-price-hero-inner span {
        font-size: 1.3rem;
    }
    .cta-corrida-final h2 {
        font-size: 1.3rem;
    }
}

/* CTA FINAL mobile */
.cta-title {
    font-size: 1.4rem;
}

.cta-final {
    padding: 50px 0;
}

.btn-cta {
    padding: 14px 24px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 360px;
}

.cta-badges {
    gap: 8px;
}

.cta-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
}

/* CONTATO mobile */
.contato-card {
    padding: 20px 16px;
}

.contato-item {
    flex-direction: column;
    gap: 10px;
}

.contato-btns {
    flex-direction: column;
}

.contato-map {
    min-height: 280px;
}

/* WHATSAPP mobile */
.whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
}

/* SECTION HEADER */
.section-tag {
    font-size: 0.7rem;
    padding: 5px 14px;
}

/* CTA CORRIDA banner */
.cta-corrida {
    padding: 40px 0;
}

/* TESTIMONIALS mobile */
.testimonial-card {
    padding: 28px 20px;
}

.testimonial-quote p {
    font-size: 1rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
}

/* FOOTER mobile */
.footer {
    padding: 40px 0 0;
}

.footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
}

.footer-col h4 {
    margin-bottom: 14px;
}

/* === TABLET (≥600px) === */
@media (min-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 110px 24px 60px;
    }

    .hero-badges {
        flex-direction: row;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .diffs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-item {
        flex-direction: row;
        gap: 18px;
    }

    .contato-map {
        min-height: 350px;
    }

    .cta-corrida-title {
        font-size: 1.6rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-corrida-actions {
        flex-direction: row;
        width: auto;
    }

    .cta-corrida-actions .btn-hero {
        width: auto;
    }

    .btn-hero {
        width: auto;
    }

    .btn-cta {
        width: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modalidades-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modalidades-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .badge {
        font-size: 0.82rem;
        padding: 7px 18px;
    }
}

/* === TABLET GRANDE / DESKTOP PEQUENO (≥768px) === */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    /* NAVBAR volta ao normal */
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        align-items: center;
        gap: 8px;
    }
    
    .nav-link {
        color: rgba(255,255,255,0.85);
        width: auto;
        padding: 8px 16px;
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--white);
        background: rgba(255,255,255,0.15);
    }
    
    .navbar.scrolled .nav-link {
        color: var(--gray);
    }
    
    .navbar.scrolled .nav-link:hover,
    .navbar.scrolled .nav-link.active {
        color: var(--blue-royal);
        background: rgba(30,58,138,0.08);
    }
    
    .nav-toggle {
        display: none;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 24px 60px;
    }

    .hero-logo {
        max-height: 120px;
    }

    .btn-hero {
        font-size: 1rem;
        padding: 16px 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .diffs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-final {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contato-map {
        min-height: 400px;
    }

    .cta-corrida-title {
        font-size: 1.8rem;
    }

    .timeline-content {
        padding: 20px;
    }
}

/* === DESKTOP (≥992px) === */
@media (min-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .diffs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contato-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contato-map {
        min-height: 520px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }

    .modalidades-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modalidades-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === DESKTOP GRANDE (≥1200px) === */
@media (min-width: 1200px) {
    .container {
        padding: 0 24px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .cta-corrida-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
}

/* === MUITO PEQUENO (≤400px) === */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .cta-corrida-title {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 1.2rem;
    }

    .hero-logo {
        max-height: 85px;
    }

    .stat-card {
        padding: 20px 14px;
    }

    .mod-card {
        padding: 20px 14px;
    }

    .diff-card {
        padding: 24px 16px;
    }

    .contato-card {
        padding: 16px 12px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .nav-logo-text {
        font-size: 1.1rem;
    }
}