/* ==========================================
   Configurações Globais & Reset Moderno
   ========================================== */
:root {
    --primary-color: #0284c7;    /* Azul Telecom Moderno */
    --primary-dark: #0369a1;
    --bg-dark: #0f172a;          /* Azul Escuro / Grafite para seções escuras */
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);

    --pink: #F5276C;
  --blue: #4e73df;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #e74a3b;
  --orange: #fd7e14;
  --yellow: #f6c23e;
  --green: #1cc88a;
  --teal: #20c9a6;
  --cyan: #36b9cc;
  --white: #fff;
  --gray: #858796;
  --gray-dark: #5a5c69;
  --primary: #4e73df;
  --secondary: #858796;
  --success: #1cc88a;
  --info: #36b9cc;
  --warning: #f6c23e;
  --danger: #e74a3b;
  --light: #f8f9fc;
  --dark: #5a5c69;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}



.destaque{
    color: yellow;
    font-weight: bold;

}
/* Reutilização de cabeçalhos de seção */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

/* ==========================================
   Barra de Navegação (Navbar)
   ========================================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bg-dark);
    text-decoration: none;
}

.logo i {
    color: var(--primary-color);
    margin-right: 5px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .btn-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-links .btn-nav:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* ==========================================
   Hero Section (Banner Principal)
   ========================================== */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1544256718-3bcf237f3974?q=80&w=1200') no-repeat center center/cover;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background-color: rgba(2, 132, 199, 0.2);
    border: 1px solid var(--primary-color);
    color: #38bdf8;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--bg-dark);
}

/* ==========================================
   Seção de Benefícios (Diferenciais)
   ========================================== */
.beneficios-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1max));
    gap: 30px;
}

.card-beneficio {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.card-beneficio i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-beneficio h3 {
    margin-bottom: 10px;
    color: var(--bg-dark);
}

/* ==========================================
   Seção de Cursos
   ========================================== */
.cursos-section {
    background-color: #f1f5f9;
    padding: 80px 20px;
}

.grid-cursos {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card-curso {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.curso-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e11d48;
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.curso-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-curso h3 {
    color: var(--bg-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card-curso p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.curso-detalhes {
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
}

/* ==========================================
   Seção de Depoimentos
   ========================================== */
.depoimentos-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.grid-depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.card-depoimento {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.texto-depoimento {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-main);
}

.autor-depoimento strong {
    display: block;
    color: var(--bg-dark);
}

.autor-depoimento span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   Seção do Formulário Profissional
   ========================================== */
.inscricao-section {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 20px;
}

.inscricao-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.inscricao-texto h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.inscricao-texto p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.contato-suporte p {
    color: var(--white);
    font-weight: 600;
}

.contato-suporte i {
    color: #22c55e; /* Verde WhatsApp */
    font-size: 1.2rem;
    margin-right: 5px;
}

.form-profissional {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.form-profissional label {
    color: var(--bg-dark);
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.form-profissional input, 
.form-profissional select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--bg-dark);
}

.form-profissional input:focus, 
.form-profissional select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

/* ==========================================
   Rodapé (Footer)
   ========================================== */
footer {
    background-color: #0b0f19;
    color: #64748b;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #1e293b;
}

footer p {
    margin-bottom: 5px;
}

/* ==========================================
   Responsividade (Telas menores)
   ========================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Em projetos reais seria adicionado um menu sanduíche */
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .inscricao-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-profissional {
        padding: 25px;
    }
    
    .grid-depoimentos {
        grid-template-columns: 1fr;
    }
}


/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color:var(--green);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #991;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}