/* ForWays CSS Design System */

/* Font Declarations */
@font-face {
    font-family: 'Aeron';
    src: url('../fonts/AERON.ttf') format('truetype'),
         url('../fonts/AERON.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Guton';
    src: url('../fonts/Guton-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Guton';
    src: url('../fonts/Guton-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Guton';
    src: url('../fonts/Guton-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --laranja-vivo: #F26200;
    --laranja-vivo-hsl: 24, 100%, 47%;
    
    --vermelho-fogo: #D82900;
    --vermelho-fogo-hsl: 11, 100%, 42%;
    
    --verde-esmeralda: #049274;
    --verde-esmeralda-hsl: 167, 95%, 29%;
    
    --cinza-chumbo: #1E1E1E;
    --cinza-chumbo-hsl: 0, 0%, 12%;
    
    --cinza-escuro: #121212;
    --cinza-claro: #F5F5F5;
    --branco: #FFFFFF;
    --preto: #0A0A0A;
    
    --font-headline: 'Aeron', Impact, sans-serif;
    --font-body: 'Guton', 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--preto);
}

body {
    font-family: var(--font-body);
    background-color: var(--preto);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--preto);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
    border: 2px solid var(--preto);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--laranja-vivo);
}

/* Utility Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Common Styles */
section {
    padding: 6rem 0;
    position: relative;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(90deg, var(--laranja-vivo) 0%, var(--vermelho-fogo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(242, 98, 0, 0.45));
    white-space: nowrap;
}

/* Header & Navigation */
.header-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header-scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.header-scrolled .header-container {
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 45px;
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--laranja-vivo);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--laranja-vivo);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--laranja-vivo) 0%, var(--vermelho-fogo) 100%);
    color: var(--branco);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-headline);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-radius: 4px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 98, 0, 0.4);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #010103;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

#auralis-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--laranja-vivo);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-title {
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    color: var(--branco);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 650px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes buttonPulsePrimary {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(242, 98, 0, 0.25);
    }
    50% {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 8px 25px rgba(242, 98, 0, 0.55);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 15px rgba(242, 98, 0, 0.25);
    }
}

@keyframes buttonPulseSecondary {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 10px 20px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: translateY(-3px) scale(1.03);
        border-color: rgba(255, 255, 255, 0.45);
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 15px 30px rgba(242, 98, 0, 0.25);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 10px 20px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--laranja-vivo) 0%, var(--vermelho-fogo) 100%);
    color: var(--branco);
    padding: 1.2rem 2.5rem;
    font-family: var(--font-headline);
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(242, 98, 0, 0.2);
}

.hero-ctas .btn-primary {
    animation: buttonPulsePrimary 3.5s infinite ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 98, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.1rem 2.4rem;
    font-family: var(--font-headline);
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-ctas .btn-secondary {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: buttonPulseSecondary 3.5s infinite ease-in-out;
}

.btn-secondary:hover {
    border-color: var(--branco);
    background: rgba(255, 255, 255, 0.05);
}

.hero-ctas .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.6);
}

/* MANIFESTO SECTION */
.manifesto-section {
    background-color: var(--preto);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.manifesto-watermark {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.02;
    pointer-events: none;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.manifesto-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--laranja-vivo);
    font-family: var(--font-body);
    font-weight: 700;
}

.manifesto-content-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: center;
}

.manifesto-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.manifesto-text p {
    margin-bottom: 1.5rem;
}

.manifesto-text strong {
    color: var(--laranja-vivo);
    font-weight: 700;
}

/* Connection SVG Widget Styles */
.connection-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 1rem 0;
}

.connection-svg {
    width: 120px;
    height: 220px;
    margin: 0.5rem 0;
}

.connection-svg path {
    stroke-width: 5px;
}

.connection-svg path#scroll-path {
    stroke-width: 6px;
    filter: drop-shadow(0 0 6px rgba(242, 98, 0, 0.65));
}

.connection-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.point-dot-a, .point-dot-b {
    width: 14px;
    height: 14px;
    background-color: var(--laranja-vivo);
    border-radius: 50%;
    border: 3px solid var(--preto);
    box-shadow: 0 0 0 2px var(--laranja-vivo);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.point-dot-b {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

@keyframes pulseGlow {
    0% {
        transform: scale(1.2);
        box-shadow: 0 0 12px 3px var(--laranja-vivo);
    }
    50% {
        transform: scale(1.45);
        box-shadow: 0 0 24px 8px var(--laranja-vivo);
    }
    100% {
        transform: scale(1.2);
        box-shadow: 0 0 12px 3px var(--laranja-vivo);
    }
}

.point-dot-b.active {
    background-color: var(--laranja-vivo);
    box-shadow: 0 0 20px 6px var(--laranja-vivo);
    transform: scale(1.25);
    animation: pulseGlow 2s infinite ease-in-out;
}

.point-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.4s ease;
}

.point-dot-b.active + .point-label {
    color: var(--branco);
}

.point-a-glow, .point-b-glow {
    transition: text-shadow 0.4s ease, color 0.4s ease;
}

.point-a-glow.active, .point-b-glow.active {
    color: var(--laranja-vivo);
    text-shadow: 0 0 12px rgba(242, 98, 0, 0.6);
}

/* ABOUT / DUALITY SECTION */
.about-section {
    background-color: var(--preto);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.about-content {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 4rem 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: 5px solid var(--laranja-vivo);
}

.about-icon-wrapper {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-custom-icon {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 0 8px rgba(242, 98, 0, 0.3));
}

.about-badge {
    background: rgba(242, 98, 0, 0.1);
    color: var(--laranja-vivo);
    border: 1px solid rgba(242, 98, 0, 0.3);
    padding: 0.4rem 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    align-self: center;
    margin-bottom: 2rem;
}

.about-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    background: linear-gradient(90deg, var(--laranja-vivo) 0%, var(--vermelho-fogo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(242, 98, 0, 0.35));
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 720px;
}

.about-text p {
    margin-bottom: 1.2rem;
}

.about-divider {
    width: 100%;
    max-width: 250px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 98, 0, 0.35), transparent);
    margin: 2rem 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 600px;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--laranja-vivo);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-badge {
    background: rgba(4, 146, 116, 0.1);
    color: var(--verde-esmeralda);
    border: 1px solid rgba(4, 146, 116, 0.3);
    padding: 0.4rem 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-badge-perform {
    background: rgba(242, 98, 0, 0.1);
    color: var(--laranja-vivo);
    border: 1px solid rgba(242, 98, 0, 0.3);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* PLANOS SECTION */
.planos-section {
    background-color: var(--preto);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.plan-card {
    background: var(--cinza-chumbo);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    border-top: 5px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    background: linear-gradient(180deg, #252525 0%, #171717 100%);
    border-top-color: var(--laranja-vivo);
    padding-top: 3.5rem; /* Extra top padding to make room for the internal badge */
}

.featured-badge {
    position: absolute;
    top: 1.2rem; /* Positioned inside boundaries to avoid clip-path cutting */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--laranja-vivo) 0%, var(--vermelho-fogo) 100%);
    color: var(--branco);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.8rem;
    border-radius: 0px; /* Square/simple border as requested */
    box-shadow: 0 2px 8px rgba(242, 98, 0, 0.3);
    z-index: 10;
    text-transform: uppercase;
}

/* Plan 4: Triathlon Layout Style override */
#card-plan-triathlon {
    border-top-color: var(--laranja-vivo);
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--branco);
}

.plan-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    min-height: auto;
}

.plan-price-box {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: baseline;
}

.plan-currency {
    font-size: 1rem;
    font-weight: 700;
    margin-right: 0.3rem;
}

.plan-price {
    font-size: 3.5rem;
    font-family: var(--font-headline);
    line-height: 1;
}

.plan-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.5rem;
}

.plan-features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-feature-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.4;
}

.plan-feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--verde-esmeralda);
    font-weight: bold;
}

.featured .plan-feature-item::before {
    color: var(--laranja-vivo);
}

.plan-btn {
    text-align: center;
    width: 100%;
}

/* EQUIPE SECTION */
.equipe-section {
    background-color: var(--cinza-chumbo);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .equipe-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

.equipe-card {
    background: var(--preto);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: var(--transition-smooth);
}

.equipe-card:hover {
    transform: translateY(-5px);
}

.equipe-photo-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid var(--laranja-vivo);
}

.equipe-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(20%) contrast(1.1);
}

.equipe-card:hover .equipe-photo-wrapper img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.0);
}

.equipe-info {
    padding: 2rem 1.5rem;
}

.equipe-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.equipe-role {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--laranja-vivo);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}

.equipe-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    min-height: 80px;
}

.equipe-cref {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.5);
}

/* TESTIMONIALS SECTION - Scrolling columns */
.testimonials-section {
    background-color: var(--preto);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scrolling-testimonials-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
    max-height: 700px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.testimonials-column-wrapper {
    overflow: hidden;
}

.testimonials-column-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scrollUp linear infinite;
}

/* Column speeds matching props */
.column-fast .testimonials-column-track {
    animation-duration: 22s;
}
.column-slow .testimonials-column-track {
    animation-duration: 32s;
}
.column-normal .testimonials-column-track {
    animation-duration: 27s;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonial-card-v2 {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem;
    border-radius: 24px;
    max-width: 320px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    user-select: none;
}

.testimonial-card-v2:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(242, 98, 0, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(242, 98, 0, 0.15);
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.avatar-placeholder-orange {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(242, 98, 0, 0.1);
    border: 2px solid rgba(242, 98, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    box-shadow: 0 0 8px rgba(242, 98, 0, 0.2);
}

@media (max-width: 768px) {
    .md-only {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .lg-only {
        display: none !important;
    }
}

/* GALERIA SECTION */
.galeria-section {
    background-color: var(--cinza-chumbo);
}

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

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    background-color: var(--preto);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(30%) brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.0);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: var(--branco);
    font-family: var(--font-headline);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

/* CONTACT & FOOTER */
.contact-section {
    background-color: var(--preto);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.contact-address {
    font-style: normal;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-address p strong {
    color: var(--laranja-vivo);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--branco);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-detail-item:hover {
    color: var(--laranja-vivo);
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--laranja-vivo);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    border-color: var(--laranja-vivo);
    color: var(--laranja-vivo);
    background: rgba(242, 98, 0, 0.05);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cinza-chumbo);
    padding: 3.5rem 3rem;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.form-control {
    width: 100%;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--branco);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--laranja-vivo);
    outline: none;
    box-shadow: 0 0 10px rgba(242, 98, 0, 0.2);
}

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits a {
    color: var(--laranja-vivo);
    text-decoration: none;
    font-weight: 600;
}

/* FONT OVERRIDES (GUTON FOR SMALL GRID/BUTTON TEXTS FOR BETTER LEGIBILITY) */
.nav-cta, 
.btn-primary, 
.btn-secondary, 
.plan-btn, 
.plan-name, 
.equipe-name, 
.race-title, 
.race-btn, 
.form-label, 
.form-control, 
.submit-btn {
    font-family: var(--font-body) !important;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* PLANOS GRID DESKTOP (4 COLS SIDE-BY-SIDE) */
@media (min-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 2.5rem 1.5rem;
    }
    
    .plan-price {
        font-size: 2.75rem;
    }
}

/* PROVAS / RACES SECTION */
.races-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.race-card {
    background: var(--cinza-chumbo);
    display: flex;
    flex-direction: column;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    border-top: 4px solid var(--verde-esmeralda);
    transition: var(--transition-smooth);
}

.race-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.race-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.race-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(35%) brightness(0.85);
}

.race-card:hover .race-image img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.0);
}

.race-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--laranja-vivo);
    color: var(--branco);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    text-transform: uppercase;
}

.race-info {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.race-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde-esmeralda);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.race-title {
    font-size: 1.4rem;
    color: var(--branco);
    margin-bottom: 1rem;
}

.race-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.race-btn {
    text-align: center;
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
}

/* RESPONSIVE DESIGN (MOBILE ADAPTATION) */
@media (max-width: 992px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-photo {
        min-height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-smooth);
        padding: 3rem;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
