
html{
    scroll-behavior:smooth;
}

/* ORIGINAL
:root{
    --primary:#0f2a44;
    --secondary:#2ec4b6;
    --accent:#ff9f1c;
    --light:#f4f7fb;
}
/* FIM ORIGINAL */
:root {
    --primary: #0A1A2A;    /* Azul Argus */
    --secondary: #C65A2E;  /* Terracota Destaque */
    --accent: #C65A2E;     /* Terracota para ícones/detalhes */
    --light: #E8DCC2;      /* Creme/Marfim de fundo */
    --white: #FFFFFF;
}


*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,sans-serif;}
body{background:var(--light);color:#333;line-height:1.6;}
img{max-width:100%;display:block;}
.container{max-width:1100px;margin:auto;padding:0 20px;}

.btn{
    background:var(--secondary);
    color:#002;
    padding:15px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

.header{
    /* --primary: #0A1A2A; */
background: linear-gradient(135deg, #0A1A2A 0%, #112942 100%);
}

.top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 0;
    gap:15px;
    flex-wrap:wrap;
}

.socials{
    display:flex;
    gap:15px;
    align-items:center;
}

.socials a{
    text-decoration:none;
    font-size:1.4em;
    transition:.3s;
}

.socials a:hover{
    transform:translateY(-2px);
}

/* CORES OFICIAIS */
.socials .fa-youtube{color:#ff0000;}
.socials .fa-instagram{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero{
    padding:70px 0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.hero h1{font-size:2.7em;}
.hero p{margin:20px 0;font-size:1.1em;}

.hero img{
    border-radius:18px;
    box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.badge{
    background:rgba(255,255,255,.15);
    padding:8px 14px;
    border-radius:20px;
    font-size:.9em;
    display:inline-block;
    margin-bottom:12px;
}

section{padding:80px 0;}
section h2{
    text-align:center;
    font-size:2.2em;
    margin-bottom:45px;
    color:var(--primary);
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card img{
    border-radius:12px;
    margin-bottom:15px;
}

.authority{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.video iframe{
    width:100%;
    height:420px;
    border-radius:18px;
}

.stats{
    background:var(--primary);
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
    text-align:center;
    padding:80px 0;
}

.stats-grid h3{
    font-size:2.4em;
    color:var(--accent);
}

.cta{
    background:linear-gradient(135deg,var(--secondary),#1fa39a);
    text-align:center;
}

footer{
    text-align:center;
    padding:40px 20px;
}

footer .socials{
    justify-content:center;
    margin-top:15px;
}

/* === WHATSAPP PREMIUM FLOAT === */
.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:62px;
    height:62px;
    background:linear-gradient(135deg,#25d366,#1ebe5d);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.1em;
    box-shadow:
        0 12px 30px rgba(37,211,102,.45),
        0 6px 12px rgba(0,0,0,.25);
    z-index:9999;
    text-decoration:none;
    transition:transform .35s ease, box-shadow .35s ease;
}

/* Ícone levemente mais suave */
.whatsapp-float i{
    filter:drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

/* Hover elegante (desktop) */
.whatsapp-float:hover{
    transform:scale(1.08);
    box-shadow:
        0 18px 40px rgba(37,211,102,.55),
        0 8px 18px rgba(0,0,0,.3);
}

/* Animação pulse premium (contínua e discreta) */
.whatsapp-float::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:rgba(37,211,102,.45);
    animation:whatsapp-pulse 2.4s infinite;
    z-index:-1;
}

@keyframes whatsapp-pulse{
    0%{transform:scale(1);opacity:.7;}
    70%{transform:scale(1.6);opacity:0;}
    100%{opacity:0;}
}

/* Mobile: ajuste fino */
@media(max-width:768px){
    .whatsapp-float{
        width:66px;
        height:66px;
        font-size:2.25em;
        right:18px;
        bottom:18px;
    }
}
/* === FORÇA TAMANHO PREMIUM DOS ÍCONES SOCIAIS (HEADER + FOOTER) === */
.socials a i.fa-brands{
    font-size:1.7em !important;
    transition:
        transform .35s ease,
        filter .35s ease;
}

/* Hover premium */
.socials a:hover i.fa-brands{
    transform:translateY(-3px) scale(1.12);
    filter:drop-shadow(0 8px 16px rgba(0,0,0,.35));
}

/* Mobile: ainda mais confortável */
@media(max-width:768px){
    .socials a i.fa-brands{
        font-size:1.9em !important;
    }
}

/* Ajuste visual após remover botão do WhatsApp do header */
.top{
    gap:20px;
}
/* === HEADER 100% WIDTH === */
header{
    width:100%;
}

/* CTA abaixo do vídeo */
.video-cta{
    margin-top:40px;
    text-align:center;
}

.video-cta p{
    font-size:1.15em;
    margin-bottom:18px;
    color:#333;
}

/* Botão WhatsApp específico */
.btn-whatsapp{
    background:linear-gradient(135deg,#25d366,#1ebe5d);
    color:#fff;
    font-weight:600;
    padding:16px 36px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.btn-whatsapp::before{
    content:"\f232";
    font-family:"Font Awesome 6 Brands";
    font-size:1.3em;
}
/* ===================== */
/* NOTÍCIAS SOBRE CONCURSOS */
/* ===================== */
.news{
    background:#fff;
}

.news h2{
    text-align:center;
    font-size:2.2em;
    margin-bottom:50px;
    color:var(--primary);
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.news-card{
    background:var(--light);
    padding:28px;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    gap:14px;
}

.news-tag{
    display:inline-block;
    background:rgba(15,42,68,.1);
    color:var(--primary);
    font-size:.8em;
    font-weight:600;
    padding:6px 12px;
    border-radius:20px;
    width:max-content;
}

.news-card h3{
    font-size:1.25em;
    color:var(--primary);
}

.news-card p{
    font-size:.95em;
    color:#444;
    line-height:1.6;
    flex:1;
}

.news-link{
    text-decoration:none;
    font-weight:600;
    color:var(--secondary);
    align-self:flex-start;
}

.news-link:hover{
    text-decoration:underline;
}

/* Mobile */
@media(max-width:768px){
    .news h2{
        font-size:1.9em;
    }
}



/* =====================
   FILTROS PREMIUM
===================== */
.news-filters{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:45px;
    justify-content:center;
}

.news-filters select{
    padding:14px 18px;
    border-radius:10px;
    border:1px solid #dfe6ee;
    background:#fff;
    font-size:.95em;
    font-weight:500;
    color:#0f2a44;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    min-width:180px;
}

.news-filters select:focus{
    outline:none;
    border-color:#2ec4b6;
    box-shadow:0 10px 25px rgba(46,196,182,.35);
}

/* TAGS */
.news-tag{
    background:linear-gradient(135deg,#0f2a44,#173b5f);
    color:#fff;
    font-size:.75em;
    padding:6px 14px;
    border-radius:20px;
    letter-spacing:.4px;
}

/* CARD HOVER */
.news-card{
    transition:.35s;
}

.news-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}
/* ==========================
   RESPONSIVIDADE MOBILE
========================== */
@media (max-width: 768px){

    /* Container mais confortável */
    .container{
        padding: 0 16px;
    }

   

    .socials{
        justify-content: center;
        width: 100%;
    }

    /* HERO */
    .hero{
        grid-template-columns: 1fr;
        padding: 50px 0;
        text-align: center;
    }

    .hero h1{
        font-size: 2em;
        line-height: 1.3;
    }

    .hero p{
        font-size: 1em;
    }

    .hero img{
        margin-top: 30px;
        max-height: 280px;
        object-fit: cover;
    }

    /* BOTÕES */
    .btn{
        padding: 14px 24px;
        font-size: .95em;
    }

    /* SEÇÕES */
    section{
        padding: 60px 0;
    }

    section h2{
        font-size: 1.8em;
        margin-bottom: 35px;
    }

    /* AUTHORITY */
    .authority{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority img{
        margin-top: 25px;
        max-height: 260px;
        object-fit: cover;
    }

    /* VÍDEO RESPONSIVO */
    .video iframe{
        height: 220px;
    }

    /* CTA VÍDEO */
    .video-cta p{
        font-size: 1em;
        padding: 0 10px;
    }

    /* STATS */
    .stats-grid h3{
        font-size: 2em;
    }

    /* NEWS */
    .news-grid{
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    footer{
        padding: 30px 15px;
    }
}

/* RESET TOTAL DO FORM */
form {
    margin: 0;
}

/* TRANSFORMA BUTTON EM BOTÃO PREMIUM */
form button {
    all: unset;               /* remove estilos nativos */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;          /* mãozinha */
    width: auto;
}

/* GARANTE QUE A CLASSE FUNCIONE */
.btn,
.btn-whatsapp {
    cursor: pointer;
}

/* FOCUS LIMPO (acessível e bonito) */
form button:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.5);
    outline-offset: 4px;
}
a, button {
    cursor: pointer;
}
/* GRID */
.cta-grid{
    display:grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-areas:
      "text image"
      "action image";
    gap:40px;
    align-items:start;
}

/* ÁREAS */
.cta-text{ grid-area:text; }
.cta-image{ grid-area:image; display:flex; justify-content:center; }
.cta-action{ grid-area:action; }

/* IMAGEM MENOR */
.cta-image img{
    max-width:300px;
    width:100%;
    height:auto;
    border-radius:20px;
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

/* MOBILE: ordem natural */
@media(max-width:768px){
    .cta-grid{
        grid-template-columns:1fr;
        grid-template-areas:
          "text"
          "image"
          "action";
        text-align:center;
    }

    .cta-action{
        margin-top:12px;
    }

    .cta-image img{
        max-width:240px;
    }
}

.news-card {
  overflow: hidden;
}

.news-card h3,
.news-card p,
.news-link {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
* {
    max-width: 100%;
}
img, iframe, video {
    max-width: 100%;
}

section.news .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

section.news .news-card {
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.06);
}

section.news .news-card h3 {
    font-size: 0.95em;
    line-height: 1.3;
    margin: 6px 0;
    font-weight: 600;
}

section.news .news-card p {
    font-size: 0.8em;
    line-height: 1.45;
    color: #555;
    margin-bottom: 6px;
}

section.news .news-link {
    font-size: 0.75em;
    color: var(--secondary);
    font-weight: 600;
}

section.news .news-tag {
    font-size: 0.6em;
    letter-spacing: .5px;
    opacity: .8;
    margin-bottom: 4px;
}
.news-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.news-controls select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.85em;
}

#news-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

#news-pagination button {
    padding: 6px 10px;
    border: none;
    background: #eee;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
}

#news-pagination button.ativo {
    background: var(--primary);
    color: #fff;
}
/* GRID PROFISSIONAL */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* CARD ELEGANTE */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

/* IMAGEM */
.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* TAG */
.news-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #173b5f);
    color: #fff;
    font-size: 0.7em;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 12px 0 6px 0;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TÍTULO E TEXTO */
.news-card h3 {
    font-size: 1.1em;
    color: var(--primary);
    margin: 6px 0;
    font-weight: 600;
}

.news-card p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

/* LINK */
.news-link {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 10px;
    text-decoration: none;
}

.news-link:hover {
    text-decoration: underline;
}

/* PAGINAÇÃO */
#news-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

#news-pagination button {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    background: #eee;
    cursor: pointer;
    font-size: 0.85em;
    transition: background 0.3s;
}

#news-pagination button:hover {
    background: var(--secondary);
    color: #fff;
}

#news-pagination button.ativo {
    background: var(--primary);
    color: #fff;
}
/* =========================
   CARDS DE NOTÍCIAS ANIMADOS
========================= */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.news-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #173b5f);
    color: #fff;
    font-size: 0.7em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 1.1em;
    color: var(--primary);
    margin: 6px 0;
    font-weight: 600;
}

.news-card p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

.news-link {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--accent);
}

/* =========================
   ANIMAÇÃO DE APARECIMENTO
========================= */
@keyframes fadeInUp {
    0% {opacity: 0; transform: translateY(12px);}
    100% {opacity: 1; transform: translateY(0);}
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

/* =========================
   PAGINAÇÃO PREMIUM COM SETAS
========================= */
.news-pagination {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.news-pagination button {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #eee;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 38px;
    text-align: center;
}

.news-pagination button:hover:not(:disabled) {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.05);
}

.news-pagination button.ativo {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    transform: scale(1.05);
}

.news-pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
/* GRID DE CARDS */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* CARDS */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

/* TAG */
.news-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #173b5f);
    color: #fff;
    font-size: 0.7em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* TITULO E RESUMO */
.news-card h3 {
    font-size: 1.1em;
    color: var(--primary);
    margin: 6px 0;
    font-weight: 600;
}

.news-card p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

/* LINK SABER MAIS */
.news-link {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--accent);
}

/* PAGINAÇÃO CLEAN */
.news-pagination {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.news-pagination button {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #eee;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 38px;
    text-align: center;
}

.news-pagination button:hover {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.05);
}

.news-pagination button.ativo {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    transform: scale(1.05);
}
/* PAGINAÇÃO */
.news-pagination {
    display: flex !important; /* garante flex */
    gap: 10px;
    justify-content: center !important; /* centraliza horizontalmente */
    margin-top: 30px;
    flex-wrap: wrap;
}

/* botão */
.news-pagination button {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #eee;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    min-width: 38px;
    transition: all 0.3s ease;
}

.news-pagination button.ativo {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.news-pagination button:hover {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.05);
}
.news-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* CARD */
.news-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

/* TAG */
.news-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #173b5f);
  color: #fff;
  font-size: 0.7em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* TITULO E RESUMO */
.news-card h3 {
  font-size: 1.1em;
  color: var(--primary);
  margin: 6px 0;
  font-weight: 600;
}

.news-card p {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
  flex: 1;
}

/* LINK SABER MAIS */
.news-link {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--accent);
}

/* PAGINAÇÃO */
.news-pagination-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.news-pagination-wrapper button {
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: #eee;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  min-width: 38px;
  transition: all 0.3s ease;
}

.news-pagination-wrapper button.ativo {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.news-pagination-wrapper button:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media(max-width:768px){
  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-card {
    padding: 16px;
  }

  .news-link {
    font-size: 0.8em;
  }

  .news-tag {
    font-size: 0.65em;
    padding: 3px 8px;
  }
}
.news-cta-btn {
  display: block;
  background: var(--secondary);
  color: #fff;
  font-size: 0.85em;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  text-align: center;
  margin: 10px 0 0 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-cta-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 70px 0;
}

.hero-text {
    z-index: 2;
}

/* Container Principal */
.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 18px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 18px 32px rgba(0,0,0,.18);
}

/* Trilho de Animação */
.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* Slides Individuais */
.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    height: 380px;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

/* Gradiente sobre o slide para leitura */
.carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.18) 55%,
        transparent 85%
    );
}

/* Conteúdo do Texto */
.carousel-slide-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.carousel-slide-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.3em;
}

.carousel-slide-content p {
    font-size: 0.9em;
}

/* Botões de Navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15,42,68,.6);
    border: none;
    color: #fff;
    font-size: 2em;
    padding: 0 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 3;
}

.carousel-btn:hover {
    background: var(--secondary);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Indicadores (Dots) */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-dots button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots button.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* Responsivo */
@media(max-width:768px){
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-carousel { margin-top: 30px; }
}



/* =========================================
   AJUSTE FORTE – TOPO MAIS CLARO
========================================= */


/* Luz ampla para aliviar o peso */
header::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at top center,
            rgba(255,255,255,.18),
            rgba(255,255,255,.06) 45%,
            transparent 70%
        );
    pointer-events:none;
}

/* Garantia de empilhamento */
header{
    position:relative;
}

/* Texto mais suave */
.hero h1{
    color:#ffffff;
    text-shadow:0 1px 6px rgba(0,0,0,.25);
}

.hero p{
    color:rgba(255,255,255,.95);
}

/* Badge bem mais leve */
.badge{
    background:rgba(255,255,255,.28);
    color:#fff;
}


/* Botão principal mais claro */
.hero .btn{
    background:#ffffff;
    color:#163f63;
}

.hero .btn:hover{
    background:#f2f6fa;
}

/* Botão WhatsApp no hero menos pesado */
.hero .btn-whatsapp{
    box-shadow:0 10px 22px rgba(0,0,0,.22);
}


/* =========================================
   CORREÇÃO – BOTÃO PRINCIPAL DO HERO
========================================= */

.hero .btn{
    background:linear-gradient(135deg,#2ec4b6,#1fa39a);
    color:#063b3a;
    box-shadow:
        0 10px 22px rgba(0,0,0,.22),
        0 0 0 rgba(0,0,0,0);
}

.hero .btn:hover{
    background:linear-gradient(135deg,#3ad6c8,#26b5ac);
    transform:translateY(-2px);
}

/* Garante que não fique branco no mobile */
@media(max-width:768px){
    .hero .btn{
        background:linear-gradient(135deg,#2ec4b6,#1fa39a);
        color:#063b3a;
    }
}
/* ===================================
   CARROSSEL COM CONTORNO FUNCIONAL
=================================== */

.hero-carousel {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 18px;
}

/* melhora leitura do texto sem escurecer */
.carousel-slide-content {
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

/* gradiente bem controlado */
.carousel-slide::after {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.18) 55%,
        transparent 85%
    );
}
/* ===================================
   REFINO FINAL DO TOPO (MAIS LEVE)
=================================== */

/* Header com azul suavizado 
 header {
    background: linear-gradient(
        180deg,
        #163d5c 0%,     /* topo mais leve 
        #2a5f8f 35%,
        #5fa3d6 65%,
        #f4f7fb 100%
    );
}
 
}*/

/* === REPARO DO HEADER: FUSÃO TOTAL E LIMPEZA === */

header {
    /* 1. Reset de Espaços (Elimina a faixa no topo) */
    margin-top: 0 !important;
    padding-top: 0 !important;
    border: none !important; /* Mata qualquer borda nativa */
    outline: none !important;
    
    /* 2. O Gradiente de Transição (Do Escuro para o Fundo do Site) */
    background: linear-gradient(
        180deg,
        #0A1A2A 0%,    /* Início: Seu azul profundo Argus */
        #163655 45%,   /* Meio: Azul executivo */
        #2c567a 75%,   /* Transição suave */
        #f4f7fb 100%   /* Fim: Exatamente a cor do fundo do site */
    ) !important;
    
    /* 3. Garante que o header cubra toda a largura sem vãos */
    width: 100% !important;
    position: relative !important;
    z-index: 1000;
}

/* 4. REMOVENDO A LINHA TEIMOSA (Pode estar na div interna) */
header div, 
header nav, 
.top, 
.header-container {
    border-bottom: none !important;
    box-shadow: none !important;
}

/* 5. Ajuste do Conteúdo Interno (Dando respiro sem criar faixas) */
.logo-area, .top-nav {
    padding: 25px 0 !important; /* O respiro agora é INTERNO */
}

/* Ajuste de Texto para esse Header */
header .logo-title, header a {
    color: #FFFFFF !important; /* Branco puro no topo escuro */
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

header .logo-subtitle {
    color: #E8DCC2 !important; /* Creme para manter a paleta Argus */
    opacity: 0.9;
}
/* TEXTO PRINCIPAL (MENTORIA PARA CONCURSOS) */
.hero h1 {
    color: #ffffff;
    text-shadow:
        0 2px 6px rgba(0,0,0,.35);
}

/* Subtexto levemente suavizado */
.hero p {
    color: rgba(255,255,255,.92);
}

/* Badge mais discreta */
.badge {
    background: rgba(255,255,255,.25);
    color: #0f2a44;
}
.badge {
    color: #f6f1e8; /* marfim profissional */
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
}

/*carrossel */ 
/* ================================
   ESTRUTURA CORRETA DO CARROSSEL
================================ */

/* Container real do carrossel */
.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Trilho */
.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* Slides */
.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}
.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}
.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}
/* ================================
   BARRA FULL WIDTH SÓ NO TOPO
================================ */

.top {
    position: relative;
    z-index: 5;
}

/* fundo que atravessa a tela */
.top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100vw;
    height: 100%;

    /*background: linear-gradient(
        180deg,
        /*#0a0a0a 0%,   /* topo quase preto */
        /*#0f2a44 50%,  /* azul escuro */
        /*#5fa3d6 100%  /* azul claro */
        
        
        
        background: linear-gradient(180deg, 
    #03080d 0%,    /* Topo: Versão "Quase Preta" do seu azul */
    #0A1A2A 50%,   /* Meio: O seu azul original (Âncora) */
    #163655 100%   /* Base: Versão clareada (Iluminada) */

    );

    z-index: -1;
}
/* =====================================================
   LOGO ARGUS — AJUSTE DEFINITIVO
   ===================================================== */
.logo-box.logo-premium {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 14px;
}

/* ÍCONE */
.logo-box.logo-premium img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    object-fit: contain;
    flex-shrink: 0;
}

/* TEXTO */
.logo-box.logo-premium .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
}

/* ARGUS */
.logo-box.logo-premium .logo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #E8DCC2 !important; /* Creme para manter a paleta Argus */
    opacity: 0.9;
}

/* SUBTÍTULO */
.logo-box.logo-premium .logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* MOBILE */
/* =====================================================
   TOPO — MOBILE (LOGO EM DESTAQUE)
   ===================================================== */

@media (max-width: 768px) {
    .top {
        padding: 20px 0;
    }

    /* LOGO MAIOR */
    .top .logo-box.logo-premium img {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        max-height: 56px !important;
    }

    .top .logo-title {
        font-size: 30px;
        letter-spacing: 2.5px;
    }

    .top .logo-subtitle {
        font-size: 12px;
        letter-spacing: 2.5px;
    }

    /* ÍCONES SOCIAIS LEVEMENTE MENORES */
    .top .socials a {
        font-size: 20px;
        margin-left: 14px;
    }
}
.top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.timer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.25s ease;
}

.timer-link i {
    font-size: 13px;
}

.timer-link:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
}
@media (max-width: 600px) {
    .timer-link span {
        display: none;
    }
}




/* =====================================================
   NOVO ESTILO --------------------------------------------------------------
   ===================================================== */
   
   /* === AJUSTE DE CURVATURA PREMIUM (PADRÃO GOOGLE) === */

/* 1. SEÇÃO: "Estudo com método e controle" 
   Arredondando a imagem e o container para harmonia visual */
.authority {
    background: #FFFFFF !important;
    padding: 100px 0 !important;
}

.authority-image img {
    border-radius: 32px !important; /* Curva generosa padrão Google */
    box-shadow: 0 20px 40px rgba(10, 26, 42, 0.06) !important;
    border: 1px solid #F1F3F4 !important;
    transition: transform 0.4s ease;
}

.authority-image img:hover {
    transform: scale(1.02);
}

/* 2. SEÇÃO: "Está difícil organizar seus estudos?"
   Box flutuante com cantos ultra-arredondados e respiro */
.cta {
    background: #F8F9FA !important; /* Separação sutil da seção anterior */
    padding: 80px 20px !important;
}

.cta-container {
    background: #FFFFFF !important;
    border-radius: 40px !important; /* Curvatura máxima para sofisticação */
    border: 1px solid rgba(232, 220, 194, 0.5) !important;
    padding: 60px !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03) !important;
    max-width: 1100px;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-image img {
    border-radius: 24px !important; /* A foto dentro do box também arredonda */
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* 3. BOTÕES: Mantendo o padrão "Pill" (Pílula) */
.btn, .btn-whatsapp, .authority .btn {
    border-radius: 50px !important; /* Totalmente arredondado */
    padding: 16px 36px !important;
    font-weight: 700 !important;
    background: #C65A2E !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(198, 90, 46, 0.15) !important;
}

/* 4. SEÇÃO DO VÍDEO: Arredondamento do player */
.video-wrapper {
    border-radius: 32px !important;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
}


/* === CORREÇÃO: ARREDONDANDO O CARD (CONTAINER) E NÃO SÓ A IMAGEM === */

.authority {
    background-color: #F8F9FA !important; /* Fundo leve para o card branco destacar */
    padding: 80px 0 !important;
}

/* Este é o alvo: o bloco que envolve texto + imagem */
.authority .container, 
.authority-container {
    background: #FFFFFF !important; /* Fundo do Card */
    border: 1px solid #E8DCC2 !important; /* Moldura Creme */
    border-radius: 40px !important; /* ARREDONDAMENTO DO CARD */
    padding: 60px !important;
    box-shadow: 0 20px 50px rgba(10, 26, 42, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    gap: 50px !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
    overflow: hidden; /* Garante que nada saia das bordas arredondadas */
}

/* Ajuste da Imagem dentro do card já arredondado */
.authority img, 
.authority-image img {
    border-radius: 20px !important; /* Imagem também arredonda, mas menos que o card */
    max-width: 450px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Ajuste do Texto para não ficar colado na borda do card */
.authority-content, 
.authority .text-box {
    flex: 1;
}

.authority h2 {
    color: #0A1A2A !important;
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
}

/* BOTÃO DENTRO DO CARD AUTHORITY */
.authority .btn {
    background: #C65A2E !important;
    border-radius: 50px !important;
    padding: 15px 35px !important;
    color: #FFFFFF !important;
    display: inline-block !important;
    margin-top: 20px;
}
.container authority 
{
    border-radius: 50px !important;
}
/* === AJUSTE SOB MEDIDA: CARD AUTHORITY (PADRÃO GOOGLE) === */

/* 1. O CARD PRINCIPAL: Onde a mágica do respiro acontece */
/* === AJUSTE DE COMPRESSÃO (REDUZINDO VÁCUOS) === */

/* 1. Zera o espaço da "caixa" que envolve o card */
section.authority, .authority-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: transparent !important;
}

/* 2. O CARD: Mantendo o tamanho bom, mas colando nas bordas */
.container.authority {
    background: #FFFFFF !important;
    border: 1px solid #E8DCC2 !important;
    border-radius: 40px !important;
    
    /* Respiro interno equilibrado (nem grande, nem pequeno) */
    padding: 80px 50px !important; 
    
    /* Margens externas quase zeradas para colar nos outros blocos */
    margin: 10px auto !important; 
    
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
    
    max-width: 1100px !important;
    box-shadow: 0 10px 30px rgba(10, 26, 42, 0.03) !important;
}

/* 3. Ajuste do Texto (Reduzindo o tamanho para não ficar exagerado) */
.container.authority h2 {
    font-size: 2rem !important; /* Tamanho padrão Google */
    color: #0A1A2A !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

.container.authority p {
    font-size: 1.05rem !important; /* Leitura confortável, sem ser gigante */
    color: #445566 !important;
    line-height: 1.5 !important;
    max-width: 420px !important;
}

/* 4. A Imagem Laranja acompanhando a redução */
.container.authority img {
    max-width: 450px !important;
    border-radius: 20px !important;
}

/* 5. Remove espaços extras das seções vizinhas (acima e abaixo) */
.hero, .stats, .features, .video-section {
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
}
/* === RESPONSIVIDADE PREMIUM: CARD AUTHORITY === */
/* === AJUSTE MOBILE: TEXTO ACIMA DA IMAGEM === */

@media (max-width: 768px) {
    /* 1. O CARD: Mantém o empilhamento */
    div.container.authority, 
    .authority > .container {
        flex-direction: column !important; 
        padding: 30px 20px !important;
        text-align: center !important;
        width: 94% !important;
        margin: 0px auto !important;
    }

    /* 2. O TEXTO (DIV): Sobe para o topo */
    div.container.authority > div {
        order: 1 !important; /* Define como o primeiro elemento */
        padding-left: 0 !important;
        margin-bottom: 0px !important; /* Espaço para não colar na imagem abaixo */
    }

    /* 3. A IMAGEM: Desce para baixo do texto */
    div.container.authority img {
        order: 2 !important; /* Define como o segundo elemento */
        max-width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
        margin-top: 0px !important;
    }

    /* 4. AJUSTE DE FONTES MOBILE */
    div.container.authority h2 {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
    }

    div.container.authority p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.video-thumb {
  width: 100%;
  height: 100%;
  background-image: url('https://img.youtube.com/vi/RYg6iAExCmA/hqdefault.jpg');
  background-size: cover;
  background-position: center;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 10px 18px;
}
body{
    background:#f8f9fa;
    color:var(--text-dark);
}