/* =================================
   VARIÁVEIS CSS
   ================================= */
:root {
    /* Paleta de Cores - Tema Claro */
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-red: #D62828;
    --color-yellow: #FFC300;
    --color-black: #000000;
    --color-text: #333333;
    --color-text-light: #666666;

    /* Cores do tema atual */
    --bg-primary: var(--color-white);
    --bg-secondary: var(--color-light-gray);
    --text-primary: var(--color-text);
    --text-secondary: var(--color-text-light);
    --border-color: #E0E0E0;

    /* Espaçamento (sistema de 8px) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;

    /* Tipografia */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --line-height-body: 1.6;
    --line-height-heading: 1.2;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Tema Escuro */
body.dark-mode {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --text-primary: #E0E0E0;
    --text-secondary: #B0B0B0;
    --border-color: #404040;
    /* Mantém vermelho e amarelo como cores de destaque */
    --color-red: #D62828;
    --color-yellow: #FFC300;
}

/* =================================
   RESET E BASE
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =================================
   CONTAINER
   ================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* =================================
   BOTÃO DE TEMA
   ================================= */
.theme-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid var(--border-color);
    padding: 6px;
}

.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    background: var(--color-yellow);
    color: var(--color-black);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

body.dark-mode .theme-toggle .sun-icon {
    display: block;
}

body.dark-mode .theme-toggle .moon-icon {
    display: none;
}

/* =================================
   CABEÇALHO
   ================================= */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 10px 0;
}

body.dark-mode .header {
    background-color: rgba(26, 26, 26, 0.9);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    max-width: var(--container-width);
    margin: 0 auto;
    height: auto;
}

.logo {
    max-width: 320px;
    height: auto;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    transition: var(--transition-fast);
}

/* Ajuste para telas menores */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 180px;
    }
    
    .logo-img {
        height: 60px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.light-logo {
    display: block;
}

.dark-logo {
    display: none;
}

body.dark-mode .light-logo {
    display: none;
}

body.dark-mode .dark-logo {
    display: block;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo .highlight {
    color: var(--color-yellow);
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-red);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

/* Yellow Button */
.btn-yellow {
    background-color: #FFC300;
    color: #000000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-yellow:hover {
    background-color: #E6AF00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* =================================
   BOTÕES
   ================================= */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #b51f1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--color-red);
}

.btn-outline:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* =================================
   HERO SECTION
   ================================= */
.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
    position: relative;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-right: 40px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s ease-out 1.5s forwards;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: carEntrance 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    transform: translateX(-100vw);
}

@keyframes carEntrance {
    0% {
        transform: translateX(-100vw);
    }
    80% {
        transform: translateX(5%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image img {
        max-height: 500px;
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =================================
   SEÇÕES GERAIS
   ================================= */
section {
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.section-header {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 800px;
    padding: 0 20px;
}

.section-header h2 {
    margin: 0 auto 15px;
    font-size: 2.5rem;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
    display: block;
}

.section-header p {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin: 0 auto var(--spacing-xl);
    max-width: 800px;
    display: block;
}

/* =================================
   SEÇÃO SOBRE NÓS
   ================================= */
.sobre-nos {
    background-color: var(--bg-secondary);
    padding: 80px 0;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.sobre-texto {
    flex: 1;
    text-align: left;
}

.sobre-descricao {
    margin-top: 20px;
}

.sobre-descricao p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.sobre-descricao p.destaque {
    color: var(--color-red);
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
    margin: 30px 0 10px;
    padding: 15px;
    background-color: rgba(214, 40, 40, 0.05);
    border-radius: 8px;
    border-right: 4px solid var(--color-red);
}

.sobre-imagem {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sobre-imagem img:hover {
    transform: scale(1.03);
}

.diferenciais-rapidos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diferencial-rapido {
    background: var(--bg-primary);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-rapido:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.diferencial-icone {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.diferencial-rapido h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .sobre-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sobre-texto, .sobre-imagem {
        width: 100%;
    }
    
    .diferenciais-rapidos {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* =================================
   SEÇÃO DE CURSOS
   ================================= */
.cursos {
    background-color: var(--bg-primary);
    padding: 80px 0;
}

.cards-grid, .cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Estilos base para todos os cards */
.card, .curso-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

.card:hover, .curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Estilo para ícones dos cards */
.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-red), var(--color-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
    box-shadow: 0 4px 10px rgba(214, 40, 40, 0.2);
}

.card-icon svg {
    color: var(--color-white);
    font-size: 32px;
}

/* Imagem dos cards de curso */
.curso-imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

/* Conteúdo dos cards */
.card-content, .curso-conteudo {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Títulos dos cards */
.card-title, .curso-conteudo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: var(--text-primary);
    line-height: 1.3;
    text-align: center;
}

/* Texto dos cards */
.card-text, .curso-conteudo p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* Lista de benefícios */
.curso-beneficios {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.curso-beneficios li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.curso-beneficios li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
    font-size: 1.2em;
}

/* Links/botões dos cards */
.card-link, .curso-conteudo .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-red), var(--color-yellow));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.card-link:hover, .curso-conteudo .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
    text-decoration: none;
}

.card-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translateX(5px);
}

/* Responsivo */
@media (max-width: 768px) {
    .cards-grid, .cursos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card, .curso-card {
        max-width: 100%;
    }
    
    .card-content, .curso-conteudo {
        padding: 25px 20px;
    }
}

.card-text,
.curso-conteudo > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

/* Links dos cards */
.card-link,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.card-link {
    color: var(--color-red);
    background: transparent;
    border: 2px solid transparent;
}

.card-link:hover {
    color: var(--color-yellow);
    transform: translateY(-2px);
}

.card-link svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translateX(3px);
}

/* Botão de contorno */
.btn-outline {
    color: var(--color-red);
    background: transparent;
    border: 2px solid var(--color-red);
}

.btn-outline:hover {
    background: var(--color-red);
    color: white;
    transform: translateY(-2px);
}

/* Botão primário */
.btn-primary {
    background: var(--color-red);
    color: white;
    border: 2px solid var(--color-red);
}

.btn-primary:hover {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    transform: translateY(-2px);
}

/* Botão desabilitado */
.btn-primary:disabled {
    background-color: #cccccc;
    border-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
}

/* Estilos para os cards de curso adicionais */
/* Grid de cursos */
.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Imagem dos cards de curso */
.curso-imagem {
    height: 200px;
    overflow: hidden;
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

/* Lista de benefícios */
.curso-beneficios {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.curso-beneficios li {
    padding: 5px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.curso-beneficios li:before {
    content: '✓';
    color: #4CAF50;
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.1em;
}

/* Seção Simulado Detran */
.simulado-detran {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.simulado-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.simulado-texto {
    flex: 1;
}

.simulado-descricao p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.simulado-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.info-item {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-item svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--color-red);
    transition: transform 0.3s ease;
}

.info-item:hover svg {
    transform: scale(1.1);
    color: var(--color-yellow);
}

.info-item h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.simulado-imagem {
    flex: 1;
    position: relative;
    border-radius: 10px;
    background: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.simulado-imagem img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.simulado-imagem:hover img {
    transform: scale(1.03);
}

.simulado-destaque {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--bg-primary);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.simulado-destaque span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 5px;
}

.simulado-destaque p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Botão desabilitado */
.btn-primary:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 992px) {
    .simulado-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .simulado-info {
        grid-template-columns: 1fr;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .simulado-imagem {
        order: -1;
    }
    
    .simulado-destaque {
        position: static;
        margin-top: 20px;
        width: 100%;
    }
    
    .card, .curso-card {
        max-width: 100%;
    }
}

/* =================================
   SEÇÃO AULAS PARA HABILITADOS
   ================================= */
.aulas-habilitados {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.aulas-habilitados-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.aulas-habilitados-texto {
    width: 100%;
}

.aulas-descricao {
    margin-bottom: 30px;
}

.aulas-descricao p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.aulas-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.beneficio-item {
    background: var(--bg-primary);
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.beneficio-item svg {
    color: var(--color-red);
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .aulas-habilitados {
        padding: 60px 0;
    }
    
    .aulas-beneficios {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .aulas-beneficios {
        grid-template-columns: 1fr;
    }
    
    .aulas-descricao p {
        font-size: 1rem;
    }
}

/* =================================
   SEÇÃO DE DIFERENCIAIS
   ================================= */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.diferencial-item {
    text-align: center;
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: var(--color-red);
}

.diferencial-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.diferencial-text {
    color: var(--text-secondary);
}

/* =================================
   SEÇÃO DE FROTA
   ================================= */
.frota {
    background-color: var(--bg-secondary);
    padding: 80px 0;
}

.frota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.veiculo-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.veiculo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.veiculo-imagem {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.veiculo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.veiculo-card:hover .veiculo-imagem img {
    transform: scale(1.05);
}

.veiculo-destaque {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--color-red);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.veiculo-info {
    padding: 20px;
}

.veiculo-info h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.veiculo-especificacoes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.veiculo-especificacoes li {
    color: var(--text-secondary);
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.veiculo-especificacoes li:before {
    content: "•";
    color: var(--color-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsividade da Seção Frota */
@media (max-width: 768px) {
    .frota-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .veiculo-imagem {
        height: 250px;
    }
}

/* =================================
   SEÇÃO DE INSCRIÇÃO
   ================================= */
.inscricao {
    background-color: var(--bg-secondary);
}

.inscricao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.inscricao-info .section-title {
    text-align: left;
}

.inscricao-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.inscricao-benefits {
    list-style: none;
}

.inscricao-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.inscricao-benefits svg {
    color: var(--color-red);
    flex-shrink: 0;
}

.form {
    background-color: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-red);
}

.form-message {
    text-align: center;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 6px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
}

/* =================================
   SEÇÃO DE DEPOIMENTOS
   ================================= */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.depoimento-card {
    background-color: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.depoimento-stars {
    color: var(--color-yellow);
    font-size: 20px;
    margin-bottom: var(--spacing-sm);
}

.depoimento-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), var(--color-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* =================================
   SEÇÃO DE CONTATO
   ================================= */
.contato {
    background-color: var(--bg-secondary);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contato-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: start;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.contato-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.contato-item p {
    color: var(--text-secondary);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

/* =================================
   RODAPÉ
   ================================= */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 140px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
}

.footer-info .highlight {
    color: var(--color-yellow);
}

.footer-info p {
    color: #B0B0B0;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: #B0B0B0;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-red);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: #B0B0B0;
    margin-bottom: var(--spacing-xs);
}

.dev-link {
    color: var(--color-yellow);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.dev-link:hover {
    color: var(--color-red);
    text-decoration: underline;
    transform: translateY(-1px);
}

/* =================================
   RESPONSIVIDADE
   ================================= */

/* Hero Image and Animation */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* Car Animation */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.car-animation {
    animation: slideInFromLeft 1.5s ease-out forwards;
    transform: translateX(-100%);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-wrapper {
        padding: 0 20px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .inscricao-content,
    .contato-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-primary);
        padding: var(--spacing-xxl) var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-normal);
        z-index: 1001;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav-link {
        font-size: 18px;
    }

    .header .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .cards-grid,
    .diferenciais-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .inscricao-info .section-title {
        text-align: center;
    }

    .logo {
        max-width: 180px;
    }
    
    .logo-img {
        height: 85px;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    :root {
        --font-size-base: 14px;
    }

    .container {
        padding: 0 var(--spacing-xs);
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* =================================
   SOBRE NÓS
   ================================= */
.sobre-nos {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sobre-texto {
    width: 100%;
    text-align: center;
}

.sobre-texto .section-subtitle {
    color: var(--color-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-texto .section-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.texto-destaque {
    color: var(--color-red);
    position: relative;
    display: inline-block;
}

.texto-destaque:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(214, 40, 40, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.sobre-descricao p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.sobre-destaque {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--color-red);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.sobre-destaque svg {
    color: var(--color-red);
    min-width: 40px;
    height: 40px;
    margin-right: 20px;
    flex-shrink: 0;
}

.sobre-destaque p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.sobre-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.diferencial-item {
    display: flex;
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diferencial-icone {
    background: rgba(214, 40, 40, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.diferencial-icone svg {
    color: var(--color-red);
    width: 24px;
    height: 24px;
}

.diferencial-texto h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.diferencial-texto p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.sobre-cta {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.sobre-cta .btn {
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sobre-cta .btn-primary {
    background-color: var(--color-red);
    color: white;
    border: 2px solid var(--color-red);
}

.sobre-cta .btn-primary:hover {
    background-color: #b52020;
    border-color: #b52020;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.2);
}

.sobre-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--color-red);
    color: var(--color-red);
}

.sobre-cta .btn-outline:hover {
    background: rgba(214, 40, 40, 0.1);
    transform: translateY(-2px);
}

/* Image container removed */

/* Responsivo */
@media (max-width: 1024px) {
    .sobre-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .sobre-nos {
        padding: 70px 0;
    }
    
    .sobre-texto .section-title {
        font-size: 2.2rem;
    }
    
    .sobre-diferenciais {
        grid-template-columns: 1fr;
    }
    
    .sobre-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .sobre-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sobre-texto .section-title {
        font-size: 1.8rem;
    }
    
    .sobre-destaque {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .sobre-destaque svg {
        margin: 0 0 15px 0;
    }
    
    .diferencial-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .diferencial-icone {
        margin: 0 auto 15px;
    }
}

/* =================================
   BANNER DE DESTAQUE
   ================================= */
.highlight-banner {
    background: linear-gradient(135deg, #FFC300, #FFA500);
    color: #1A1A1A;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 195, 0, 0.3);
}

.highlight-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.banner-icon {
    color: #1A1A1A;
    animation: pulse 2s infinite;
}

.banner-text {
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    min-width: 300px;
}

.banner-btn {
    background: #1A1A1A;
    color: #FFC300;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #FFC300;
    text-decoration: none;
}

/* Responsivo para o banner */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .banner-text {
        font-size: 14px;
        min-width: auto;
    }
    
    .banner-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* =================================
   BOTÃO FLUTUANTE WHATSAPP
   ================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* =================================
   BOTÃO FLUTUANTE INSTAGRAM
   ================================= */
.instagram-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.6);
    color: white;
    text-decoration: none;
}

.instagram-float svg {
    width: 28px;
    height: 28px;
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsivo para o botão WhatsApp e Instagram */
@media (max-width: 768px) {
    .whatsapp-float, .instagram-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .instagram-float {
        bottom: 80px;
    }
    
    .whatsapp-float svg, .instagram-float svg {
        width: 24px;
        height: 24px;
    }
}

/* =================================
   SEÇÃO DE CURSOS
   ================================= */
.cursos {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.cards-grid, .cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card, .curso-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.card {
    padding: 40px 30px;
    text-align: center;
}

.curso-card {
    padding: 0;
}

.card:hover, .curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 50%;
    color: var(--accent-color);
}

.curso-imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

.curso-conteudo {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title, .curso-conteudo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-text, .curso-conteudo p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.curso-beneficios {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.curso-beneficios li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.curso-beneficios li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
}

.card-link, .curso-conteudo .btn {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    margin-top: auto;
    width: fit-content;
}

.card-link {
    margin: 0 auto;
}

.card-link:hover, .curso-conteudo .btn:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.card-link svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translateX(5px);
}

/* =================================
   Estilos para a seção de depoimentos
   ================================= */
.google-reviews {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-primary);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: auto;
    text-align: right;
}

.testimonial-cta {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    background: var(--bg-primary);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.testimonial-cta p {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.1em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .google-reviews {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-cta {
        padding: 20px 15px;
    }
}

/* Estilos para links de telefone */
.phone-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
    padding: 2px 4px;
    border-radius: 4px;
}

.phone-link:hover {
    color: var(--accent-hover);
    background-color: rgba(0, 0, 0, 0.03);
    text-decoration: underline;
}

.contato-item a.phone-link {
    color: var(--accent-color);
}

.contato-item a.phone-link:hover {
    color: var(--accent-hover);
}

/* =================================
   SEÇÃO DE CURSOS EAD
   ================================= */
.ead-cursos {
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.ead-cursos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFC300, #D62828);
}

.ead-cursos .section-title {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
}

.ead-cursos .section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.ead-card {
    position: relative;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ead-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ead-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #D62828;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ead-card .curso-conteudo {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ead-card h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    padding-right: 30px;
}

.ead-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.ead-card .curso-beneficios {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}

.ead-card .curso-beneficios li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.ead-card .curso-beneficios li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.ead-card .btn {
    background: linear-gradient(135deg, #FFC300, #F77F00);
    color: #1a1a1a;
    font-weight: 600;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
}

.ead-card .btn:hover {
    background: linear-gradient(135deg, #F77F00, #D62828);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Abas de Categorias EAD */
.ead-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ead-tab {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ead-tab:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
    transform: translateY(-2px);
}

.ead-tab.active {
    background: linear-gradient(135deg, var(--color-red), var(--color-yellow));
    color: var(--color-white);
    border-color: var(--color-red);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
}

.ead-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.ead-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo para Cursos EAD */
@media (max-width: 768px) {
    .ead-cursos {
        padding: 60px 0;
    }
    
    .ead-card {
        margin-bottom: 30px;
    }
    
    .ead-tabs {
        gap: 8px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .ead-tab {
        padding: 10px 12px;
        font-size: 0.8rem;
        min-width: 90px;
        max-width: 150px;
        flex: 1 1 auto;
    }
}
