/* =========================================
   BRASA FIT - CSS/SCSS COMPLETO
   Organizado por Seções com Animações
   ========================================= */

/* =========================================
   1. VARIÁVEIS & CONFIGURAÇÕES
   ========================================= */
:root {
    /* Cores da Marca */
    --primary-color: #FF4405;
    --primary-hover: #F03106;

    /* Fundo e Estrutura */
    --bg-dark: #111111;
    --bg-light: #F6F6F6;
    --border-light: #F1F6E6;
    --white: #FFFFFF;

    /* Tipografia */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1400px;
    --header-height: 90px;
}

/* =========================================
   2. RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* =========================================
   3. UTILITÁRIOS & CONTAINER
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-primary,
.highlight-text {
    color: var(--primary-color);
}

.section-tag {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   4. ANIMAÇÕES GLOBAIS (SCROLL REVEAL)
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes para elementos que aparecem ao rolar */
.scroll-reveal {
    opacity: 0;
}

.scroll-reveal.revealed {
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-reveal-left {
    opacity: 0;
}

.scroll-reveal-left.revealed {
    animation: fadeInLeft 0.8s ease forwards;
}

.scroll-reveal-right {
    opacity: 0;
}

.scroll-reveal-right.revealed {
    animation: fadeInRight 0.8s ease forwards;
}

.scroll-reveal-scale {
    opacity: 0;
}

.scroll-reveal-scale.revealed {
    animation: scaleIn 0.6s ease forwards;
}

/* =========================================
   5. COMPONENTES - BOTÕES
   ========================================= */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 68, 5, 0.4);
}

.btn-outline-dark {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #111;
    border-radius: 50px;
    color: #111;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #111;
    color: var(--white);
}

.btn-outline-plan {
    padding: 12px 30px;
    border: 2px solid #111;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline-plan:hover {
    background-color: #111;
    color: #fff;
}

.btn-filled-plan {
    padding: 12px 30px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-filled-plan:hover {
    background-color: #d13605;
    border-color: #d13605;
}

.btn-view-all {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background-color: var(--white);
    color: var(--bg-dark);
}

.btn-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn-play .play-icon {
    font-size: 18px;
    color: var(--white);
    margin-left: 4px;
}

.btn-play:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* =========================================
   6. HEADER / NAVEGAÇÃO
   ========================================= */
#header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.logo .highlight {
    color: var(--white);
}

.navbar .nav-list {
    display: flex;
    gap: 40px;
}

.navbar .nav-link {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
}

.mobile-menu-icon .bar {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.4s;
}

/* =========================================
   7. HERO SECTION
   ========================================= */
.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0.95) 35%, rgba(17, 17, 17, 0.6) 60%, rgba(17, 17, 17, 0.0) 100%), url('../assets/img/hero/banner.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-section .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.social-proof .avatars {
    display: flex;
}

.social-proof .avatar,
.social-proof .avatar-count {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #333;
    object-fit: cover;
    margin-left: -15px;
}

.social-proof .avatar:first-child {
    margin-left: 0;
}

.social-proof .avatar-count {
    background-color: var(--white);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 5;
}

.social-proof .social-text {
    font-size: 14px;
    line-height: 1.2;
    color: var(--white);
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1.04;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.55;
    color: #CCCCCC;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* =========================================
   8. HERO INFO CARD (FLUTUANTE)
   ========================================= */
.hero-info-card {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.hero-info-card .info-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-info-card .schedule-list {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-info-card .schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 15px;
    color: #999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.hero-info-card .schedule-row:last-child {
    border-bottom: none;
}

.hero-info-card .schedule-row .day {
    color: var(--white);
    font-weight: 500;
}

.hero-info-card .schedule-row .time {
    color: #DDD;
    font-weight: 400;
    text-align: right;
    font-size: 14px;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #444444;
    padding: 10px 10px 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
}

.location-btn:hover {
    background-color: #555;
}

.location-btn .pin-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 68, 5, 0.3);
}

/* =========================================
   9. PARTNERS SECTION (CARROSSEL)
   ========================================= */
.partners-section {
    background-color: #F6F6F6;
    padding: 40px 0;
    overflow: hidden;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    justify-content: center;
}

.partners-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.partners-section .partners-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--bg-dark);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Gradiente nas laterais para suavizar o carrossel */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px; /* Espaço entre os logos */
    width: max-content;
    animation: scroll-infinite 40s linear infinite;
}

/* --- ESTILO GERAL DOS LOGOS --- */
.partner-logo {
    height: 25px; /* Tamanho padrão (bom para logos quadrados/altos como Adidas/Puma) */
    width: auto;
    object-fit: contain;
    filter: brightness(0); 
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: default;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* --- TAMANHOS SEPARADOS (CUSTOMIZADOS) --- */
/* Aumenta especificamente o Sports (que é texto e fica pequeno demais) */
.partner-logo[alt="Sports"] {
    height: 45px; 
}

/* Aumenta marcas horizontais para equilibrar com as quadradas */
.partner-logo[alt="Oakley"],
.partner-logo[alt="New Balance"], 
.partner-logo[alt="Fila"] {
    height: 30px;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   10. ABOUT SECTION (SOBRE NÓS)
   ========================================= */
.about-section {
    background-color: var(--white);
    padding: 100px 0;
    color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 80px;
    row-gap: 40px;
    margin-bottom: 100px;
}

.about-grid .grid-title {
    grid-column: 1;
    grid-row: 1;
}

.about-grid .grid-image {
    grid-column: 1;
    grid-row: 2;
}

.about-grid .grid-content {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}

.about-img-wrapper {
    width: 100%;
    max-width: 450px;
}

.about-img-wrapper .about-square-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    color: #111;
}

.about-subtitle {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: -8px;
}

.about-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.info-card {
    background-color: #fff;
    padding: 40px 30px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.info-card .card-icon img {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

.info-card .card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #111;
}

.info-card .card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* =========================================
   11. CLASSES SECTION (AULAS/CARROSSEL)
   ========================================= */
.classes-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.classes-section .container {
    position: relative;
    z-index: 1;
}

.bg-decoration-top,
.bg-decoration-bottom {
    position: absolute;
    width: 100%;
    height: 300px;
    background-image: url('../assets/img/planos/flechas.png');
    background-repeat: no-repeat;
    background-size: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-decoration-top {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-position: top center;
}

.bg-decoration-bottom {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    background-position: bottom center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title,
.section-title-dark {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1;
    text-transform: uppercase;
}

.section-title {
    color: var(--white);
}

.section-title-dark {
    color: #111;
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.class-card {
    min-width: 600px;
    width: 600px;
    flex-shrink: 0;
    background-color: #1A1A1A;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.class-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.class-card .card-image {
    height: 550px;
    width: 100%;
    position: relative;
}

.class-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.class-card .card-image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #1A1A1A 10%, transparent 100%);
}

.class-card .card-content {
    padding: 30px;
    background-color: #1A1A1A;
    position: relative;
    margin-top: -80px;
    z-index: 2;
}

.class-card .class-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.class-card .class-schedule {
    font-size: 15px;
    color: #AAA;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.class-card .time-badge {
    background-color: #333;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.class-card .class-pricing {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.class-card .price-item {
    display: flex;
    flex-direction: column;
}

.class-card .price-item .label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}

.class-card .price-item .price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

.carousel-controls {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #222;
    border: 1px solid #333;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =========================================
   12. MEMBERSHIP SECTION (PLANOS)
   ========================================= */
.membership-section {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
    color: #111;
}

.bg-arrows-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/planos/flechas.png');
    background-repeat: no-repeat;
    background-position: top center;
    opacity: 0.05;
    pointer-events: none;
}

.membership-header {
    margin-bottom: 60px;
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-card {
    background-color: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:not(.popular-card):hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.plan-card .plan-info {
    flex: 2;
    padding-right: 20px;
}

.plan-card .plan-name {
    font-family: var(--font-heading);
    font-size: 24px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 8px;
}

.plan-card .plan-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.plan-card .plan-pricing {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-card .plan-pricing .price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.plan-card .plan-pricing .period {
    font-size: 14px;
    color: #888;
}

.plan-card .plan-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.popular-card {
    background-color: #111;
    border: none;
    padding: 0;
    display: block;
}

.popular-card .popular-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-card .plan-content-wrapper {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popular-card .plan-name {
    color: #fff;
}

.popular-card .plan-desc {
    color: #ccc;
}

.popular-card .plan-pricing .price {
    color: #fff;
}

.popular-card .plan-pricing .period {
    color: #999;
}

/* =========================================
   13. REVIEWS SECTION (DEPOIMENTOS)
   ========================================= */
.reviews-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
}

.reviews-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.masonry-grid {
    column-count: 3;
    column-gap: 30px;
}

.review-card {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    break-inside: avoid;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.02);
}

.review-card .review-text {
    font-size: 16px;
    color: #CCC;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card .reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-card .reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}

.review-card .reviewer-name {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* =========================================
   14. BLOG SECTION
   ========================================= */
.blog-section {
    background-color: var(--white);
    padding: 100px 0;
    color: #111;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease; /* Removido 'transform' da transição */
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    /* transform: translateY(-5px);  <-- REMOVIDO: O card não sobe mais */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #DDD;
}

.blog-card:hover .blog-image img {
    /* transform: scale(1.05); <-- REMOVIDO: A imagem não dá zoom mais */
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-card .blog-image {
    height: 240px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.5s ease; <-- REMOVIDO: Não é mais necessário */
}

.blog-card .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(30, 30, 30, 0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.blog-card .blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.3;
    color: #111;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.blog-card .blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card .blog-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
    border-top: 1px solid #F0F0F0;
    padding-top: 15px;
}

.blog-card .blog-meta svg {
    color: var(--primary-color);
}
/* =========================================
   15. CTA SECTION
   ========================================= */
.cta-section {
    width: 100%;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #111;
    background: linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0.9) 35%, rgba(17, 17, 17, 0.5) 60%, rgba(17, 17, 17, 0.0) 100%), url('../assets/img/hero/banner2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-content .cta-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 24px;
    max-width: 700px;
}

.cta-content .cta-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: #DDD;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* =========================================
   16. FOOTER
   ========================================= */
.footer-section {
    background-color: #F9F9F9;
    padding: 100px 0 40px 0;
    color: #111;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.85;
}

.footer-brand .brand-orange {
    font-family: var(--font-heading);
    font-size: 100px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: -5px;
}

.footer-brand .brand-black {
    margin-top: 30px;
    font-family: var(--font-heading);
    font-size: 100px;
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.footer-nav {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.footer-col .col-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 20px;
}

.contact-block .contact-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.contact-block .contact-text,
.contact-block .contact-text a {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-block .contact-text a:hover {
    color: var(--primary-color);
}

.footer-divider {
    height: 1px;
    background-color: #E5E5E5;
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 13px;
    color: #888;
}

/* =========================================
   17. RESPONSIVIDADE (MOBILE/TABLET)
   ========================================= */

/* Tablet (992px e abaixo) */
@media (max-width: 992px) {

    /* Header */
    .navbar {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 20px;
        border-bottom: 2px solid var(--primary-color);
    }

    .navbar.active {
        display: block;
    }

    .navbar .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-icon {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    /* Hero */
    .hero-section {
        background-position: 70% center;
        background: linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0.9) 60%, rgba(17, 17, 17, 0.4) 100%), url('../assets/img/hero/banner.png');
        background-size: cover;
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero-section .container {
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        margin-top: 60px;
        width: 100%;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-info-card {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 50px;
        background: rgba(30, 30, 30, 0.95);
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 30px;
        margin-bottom: 60px;
    }

    .about-grid .grid-title,
    .about-grid .grid-image,
    .about-grid .grid-content {
        grid-column: 1;
        grid-row: auto;
    }

    .about-title {
        font-size: 48px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Plans */
    .plan-card,
    .plan-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .plan-pricing {
        margin-bottom: 10px;
    }

    .plan-action {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-outline-plan,
    .btn-filled-plan {
        width: 100%;
        text-align: center;
    }

    .popular-badge {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 10px 20px;
    }

    /* Reviews */
    .masonry-grid {
        column-count: 2;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-nav {
        gap: 40px;
        width: 100%;
        justify-content: space-between;
        padding-top: 0;
    }
}

/* Mobile (768px e abaixo) */
@media (max-width: 768px) {

    /* Carousel */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .class-card {
        min-width: 85vw;
        width: 85vw;
    }

    .class-card .card-image {
        height: 400px;
    }

    .class-card .card-content {
        margin-top: -60px;
        padding: 20px;
    }

    /* Partners */
    .marquee-track {
        gap: 50px;
        animation-duration: 20s;
    }

    .partner-logo {
        height: 28px;
    }

    /* CTA */
    .cta-section {
        min-height: 500px;
        background-position: 70% center;
        background: linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0.95) 50%, rgba(17, 17, 17, 0.4) 100%), url('../assets/img/hero/banner2.png');
        background-size: cover;
    }

    .cta-title {
        font-size: 40px;
    }
}

/* Small Mobile (600px e abaixo) */
@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }

    .section-title {
        font-size: 40px;
    }

    .brand-orange,
    .brand-black {
        font-size: 60px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}