/* Cores do Estratégia Med - Redesign */
:root {
    /* Cores principais */
    --primary-color: #00b2a9; /* Turquesa - cor principal do Estratégia Med */
    --secondary-color: #e94283; /* Rosa/Magenta - cor secundária */
    --dark-blue: #0a2240; /* Azul escuro/marinho para fundos */
    --gold: #d4af37; /* Dourado para destaques */
    
    /* Cores de texto */
    --text-dark: #333333;
    --text-light: #ffffff;
    
    /* Cores de fundo */
    --bg-dark: #0a2240; /* Azul escuro/marinho */
    --bg-light: #ffffff;
    --bg-light-blue: #e6f7f6; /* Azul claro para seções alternadas */
    --bg-gray: #f5f5f5;
    
    /* Cores de gatilho */
    --success-color: #4caf50; /* Verde para sucesso */
    --warning-color: #ff9800; /* Laranja para avisos */
    --error-color: #f44336; /* Vermelho para erros */
    --info-color: #2196f3; /* Azul para informações */
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #00b2a9 0%, #00d4cb 100%);
    --gradient-secondary: linear-gradient(135deg, #e94283 0%, #ff6eb5 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f5d76e 100%);
    --gradient-dark: linear-gradient(135deg, #0a2240 0%, #1a3a6c 100%);
    
    /* Sombras */
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
    
    /* Transições */
    --transition: all 0.3s ease;
}

/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0a2240;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: #00b2a9;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #e94283;
}

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

section {
    padding: 80px 0;
}

.highlight {
    color: #00b2a9;
    font-weight: 700;
}

.gold-highlight {
    color: #d4af37;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Botões */
button, .btn-curso, .btn-cta, .btn-acessar, .btn-reminder {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--box-shadow);
}

button:hover, .btn-curso:hover, .btn-cta:hover, .btn-acessar:hover, .btn-reminder:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-acessar {
    background: var(--gradient-secondary);
    font-size: 1.2rem;
    padding: 15px 30px;
    margin-top: 20px;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #0a2240;
}

/* Botão Flutuante de Cupom */
.floating-coupon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: 2px solid #00b2a9;
}

.floating-coupon span {
    font-weight: 700;
    color: #00b2a9;
    font-size: 1.2rem;
    margin-right: 10px;
}

.floating-coupon button {
    padding: 8px 12px;
    font-size: 0.9rem;
    background: var(--gradient-primary);
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #00b2a9;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Cabeçalho */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #0a2240;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

nav ul li a:hover {
    color: #00b2a9;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0a2240;
}

/* Seção Hero */
.hero {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.2) 0%, rgba(10, 34, 64, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.hero h1 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: #d4af37;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.coupon-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coupon-code {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.coupon-code span {
    margin-right: 10px;
    font-size: 1.1rem;
}

.code {
    background: var(--text-light);
    color: #00b2a9;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

#copy-message {
    margin-top: 10px;
    color: var(--success-color);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Seção Sobre o ENARE */
.sobre-enare {
    background-color: #e6f7f6;
}

.sobre-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.sobre-text {
    flex: 1;
    min-width: 300px;
}

.sobre-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 150px;
    border-top: 3px solid #00b2a9;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00b2a9;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: #333333;
}

/* Seção Cursos */
.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.curso-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.curso-header {
    background: var(--gradient-dark);
    padding: 20px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.curso-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.3) 0%, rgba(10, 34, 64, 0) 100%);
}

.curso-header h3 {
    color: var(--text-light);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.curso-body {
    padding: 20px;
    flex-grow: 1;
}

.curso-features {
    list-style: none;
    margin-top: 15px;
}

.curso-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.curso-features li i {
    color: #00b2a9;
    margin-right: 10px;
    margin-top: 4px;
}

.curso-footer {
    padding: 20px;
    background: var(--bg-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cupom-valid {
    font-size: 0.9rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
}

.cupom-valid::before {
    content: '✓';
    margin-right: 5px;
    font-weight: bold;
}

/* Seção Benefícios */
.beneficios {
    background-color: #e6f7f6;
}

.beneficios-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.beneficios-list {
    flex: 1;
    min-width: 300px;
}

.beneficio-item {
    display: flex;
    margin-bottom: 30px;
}

.beneficio-icon {
    background: #00b2a9;
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.beneficio-text h3 {
    margin-bottom: 10px;
}

.beneficios-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.beneficios-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 5px solid #ffffff;
}

/* Seção Como Usar o Cupom */
.como-usar {
    background-color: #ffffff;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    background: var(--gradient-primary);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.coupon-reminder {
    background: #e6f7f6;
    border-radius: 8px;
    padding: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-left: 5px solid #00b2a9;
}

.reminder-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.reminder-text h3 {
    margin-bottom: 0;
}

.reminder-code {
    background: #ffffff;
    color: #00b2a9;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    border: 1px dashed #00b2a9;
}

/* Seção Depoimentos */
.depoimentos {
    background-color: var(--bg-gray);
}

.depoimentos-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.depoimento-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    max-width: 350px;
    flex: 1;
    min-width: 300px;
    position: relative;
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #00b2a9;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.depoimento-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #00b2a9;
}

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

.depoimento-content {
    text-align: center;
}

.depoimento-content h3 {
    margin-bottom: 5px;
}

.depoimento-instituicao {
    color: #00b2a9;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.depoimento-texto {
    font-style: italic;
}

/* Seção FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    color: #00b2a9;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #e6f7f6;
}

.faq-item.active .faq-answer {
    padding: 20px;
}

/* Seção Call-to-Action Final */
.cta-final {
    background: var(--gradient-dark);
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.2) 0%, rgba(10, 34, 64, 0) 100%);
}

.cta-final h2, .cta-final p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: 2.5rem;
}

.cta-final h2 .highlight {
    color: #d4af37;
}

.cta-final p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-coupon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    margin: 30px auto;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.cta-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-acessar {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 15px 40px;
    position: relative;
    z-index: 1;
}

/* Rodapé */
footer {
    background: #0a2240;
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 140px;
}

.footer-logo img {
    height: 32px;
    margin-bottom: 15px;
    max-width: 144px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
    opacity: 1;
    color: #00b2a9;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}



.social-media {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-media a {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-media a:hover {
    background: #00b2a9;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Placeholder para imagens de depoimentos */
.depoimento-foto img[src="imagens/depoimento1.jpg"],
.depoimento-foto img[src="imagens/depoimento2.jpg"],
.depoimento-foto img[src="imagens/depoimento3.jpg"] {
    background-color: #ddd;
}

/* Placeholder para logo */
.logo img[src="imagens/logo_estrategia_med.png"] {
    background-color: #00b2a9;
    padding: 5px;
    border-radius: 4px;
}
