:root {
    --cria-blue: #136fbd;
    --cria-blue-dark: #0d5c97;
    --cria-deep: #0b3550;
    --cria-orange: #ff7a21;
    --cria-orange-2: #ff6a00;
    --glass-bg: rgba(255, 255, 255, .75);
    --glass-brd: rgba(255, 255, 255, .45);
    --shadow-sm: 0 6px 22px rgba(3, 30, 66, .10);
    --shadow-md: 0 12px 36px rgba(3, 30, 66, .18);
}

.logo-cria {
    max-height: 68px;
    width: auto;
}

/* NAVBAR */
.navbar-glass {
    backdrop-filter: saturate(1.2) blur(8px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.336), rgba(255, 255, 255, .75));
    border-bottom: 1px solid rgba(13, 92, 151, .08);
    padding: .85rem 0;
   
}



.navbar-nav.nav-spaced { gap: 1.8rem; }

.navbar-glass .nav-link {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 1.05rem;
    color: #1f3b52;
    padding: .5rem .9rem;
    border-radius: 6px;
    transition: all .2s ease;
}

.navbar-glass .nav-link:hover { color: var(--cria-blue); }

/* Estilo do item ativo */
.navbar-glass .nav-link.nav-pill.active {
    background: #0c567f;
    color: #fff !important;
    font-weight: 600;
    border-radius: 6px;
}


/* ===== Dropdown "Dúvidas?" no menu principal ===== */



/* Dropdown em si com efeito glass, igual ao do usuário mas adaptado */
.navbar-glass .dropdown-menu.dropdown-duvidas {
  --dd-bg: rgba(255, 255, 255, 0.96);
  --dd-brd: rgba(3, 30, 66, 0.10);
  --dd-shadow: 0 14px 32px rgba(3, 30, 66, 0.16);

  opacity: 0;
  transform: translateY(6px) scale(.99);
  transform-origin: top right;
  transition: opacity .16s ease-out, transform .18s cubic-bezier(.2,.7,.3,1);

  background: var(--dd-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--dd-brd);
  border-radius: .9rem;
  padding: .35rem;
  box-shadow: var(--dd-shadow);
  min-width: 230px;
}

/* estado visível */
.navbar-glass .dropdown-menu.dropdown-duvidas.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}



/* Marca institucional no hero */
.hero-gdf-mark {
  max-width: 240px;   /* ajusta se achar grande/pequena */
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Mobile: um pouquinho menor */
@media (max-width: 575.98px) {
  .hero-gdf-mark {
    max-width: 210px;
  }
}






/* Itens do dropdown "Dúvidas?" */
.dropdown-duvidas .dropdown-item {
  border-radius: .55rem;
  padding: .5rem .8rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .92rem;
  color: #123a55;
  transition: background-color .12s ease, transform .12s ease, color .12s ease;
  
  
  
  
  
}

.dropdown-duvidas .dropdown-item i {
  font-size: 1rem;
  opacity: .9;
  flex-shrink: 0;
}

.dropdown-duvidas .dropdown-item:hover {
  background: rgba(19, 111, 189, .08);
  transform: translateX(1px);
  color: #0b3550;
}

/* cabeçalho do dropdown ("Central de dúvidas") */
.dropdown-duvidas .small.text-muted span:first-child {
  color: #0b3550;
}
.dropdown-duvidas .small.text-muted span:last-child {
  color: #6b8196;
}

/* Mobile: ocupa largura total e centraliza melhor */
@media (max-width: 991px) {
  .navbar-glass .nav-link-duvidas {
    width: 100%;
    justify-content: center;
  }

  .navbar-glass .dropdown-menu.dropdown-duvidas {
    min-width: 100%;
    border-radius: .8rem;
  }
}

/* Respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce) {
  .navbar-glass .dropdown-menu.dropdown-duvidas {
    transition: none;
    transform: none !important;
  }
}














/* HERO */
.hero.hero-flat {
    position: relative;
    padding: clamp(78px, 5vw,180px) 0 88px;
    color: #fff;
    background: url("../img/fundo-hero.png") center center / cover no-repeat;
    background-size: 100% 100%;
}

/* Grade com respiro horizontal nas telas grandes */
@media (max-width: 1200px){
  .hero.hero-flat{
     position: relative;
    padding: clamp(78px, 9vw, 120px) 0 88px; /* +10px de respiro inferior */
    color: #fff;
    background: url("../img/banner-azul.png") center center / cover no-repeat;
  }
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='2' cy='2' r='1' fill='white'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.text-white-75 { color: rgba(255, 255, 255, .84); }

.badge-hero {
    display: inline-block;
    padding: .5rem .85rem;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    
}

/* Botões hero */
.btn-accent {
    --bs-btn-bg: var(--cria-orange);
    --bs-btn-border-color: var(--cria-orange);
    --bs-btn-hover-bg: var(--cria-orange-2);
    --bs-btn-hover-border-color: var(--cria-orange-2);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
}

.btn-hero { position: relative; transition: transform .16s ease, box-shadow .16s ease; }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-hero:active { transform: translateY(0) scale(.98); }

/* Ripple e Shine */
.btn-hero::before{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:inherit;
    background: radial-gradient(80% 120% at 50% 0%, rgba(255,255,255,.38), transparent 60%);
    opacity:0;
    transition:opacity .2s ease;
}
.btn-hero:hover::before{ opacity:.6; }

.ripple{
    position:absolute; border-radius:50%; transform:scale(0);
    animation:ripple .6s linear; background:rgba(255,255,255,.45);
    mix-blend-mode:screen; pointer-events:none;
}
@keyframes ripple{ to{ transform:scale(3.2); opacity:0 } }

/* ===== Seções e cards ===== */

/* Espaço vertical confortável entre seções */
.section-space{
    padding-top: clamp(2.75rem, 6vw, 4.75rem);
    padding-bottom: clamp(2.75rem, 6vw, 4.75rem);
}

.section-alt { background:#eff7fa; }

/* Aumenta respiro entre título da seção e cards */
.section-alt .heading-section{
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem) !important;
}

/* Grade com respiro horizontal nas telas grandes */
@media (min-width: 1200px){
  .row.gx-xl-5{ --bs-gutter-x: 3rem; }
}

/* Card com respiro interno e sombra suave */
.card.feature.glass{
    border-radius: 1.2rem;
    background: linear-gradient(180deg, var(--glass-bg), rgba(255, 255, 255, .64));
    border: 1px solid var(--glass-brd);
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card.feature.glass:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color: rgba(255,122,33,.35); }

/* Ícones coloridos (sem fundo) e alinhados à esquerda */
.icon-orange{ color:#ff7a21; }
.card .fa-solid{ line-height:1; }          /* evita “pulo” vertical */
.card .fa-solid + .heading-card{ margin-top: .15rem; } /* micro respiro entre ícone e título */

/* Tipografia */
.heading-section{
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 36px;
  font-weight: 700; /* bold */
  color: #004F80;
  line-height: 1.2;
}

.heading-card{
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 600; /* semibold */
  color: #002F4D;
  line-height: 1.3;
}

.text-muted-foreground{
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #668599 !important;
  line-height: 1.6;
  margin-top: .35rem; /* + respiro abaixo do título */
}

/* CTA */
.cta.glass-strong{
    max-width: 880px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .76));
    border: 1px solid rgba(13, 92, 151, .18);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER MODERNO ===== */
.footer {
  background: linear-gradient(180deg, var(--cria-blue-dark) 0%, var(--cria-deep) 100%);
  position: relative;
  overflow: hidden;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-logo {
  max-width: 360px;
  margin: 0 auto;
}

.footer-title {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--cria-orange);
  border-radius: 2px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0;
}

.footer-links .footer-link,
.footer-contact .footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 0.25rem 0;
}

.footer-links .footer-link:hover,
.footer-contact .footer-link:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.footer-social {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  font-size: 0.9rem;
}

.social-icon:hover {
  background: var(--cria-orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15) !important;
  margin: 1rem 0;
}

.footer-bottom {
  padding-top: 0.5rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.footer-legal-link:hover {
  color: #fff;
}

/* Responsividade - MOBILE FIRST */
@media (max-width: 768px) {
  .footer {
    text-align: center;
    padding: 1.5rem 0;
  }
  
  .footer .container {
    padding: 0 1rem;
  }
  
  .footer .row {
    margin: 0 -0.5rem;
  }
  
  .footer .col-12,
  .footer .col-6,
  .footer .col-md-3,
  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .footer-brand {
    margin-bottom: 1.5rem !important;
  }
  
  .footer-logo {
    max-width: 140px;
    margin-bottom: 0.75rem;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-links,
  .footer-contact {
    text-align: center;
  }
  
  .footer-links .list-unstyled,
  .footer-contact .list-unstyled {
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-contact li {
    justify-content: center;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .footer-contact li .bi {
    margin-right: 0.5rem;
    flex-shrink: 0;
    font-size: 0.9rem;
  }
  
  .footer-social {
    gap: 0.5rem;
    margin-bottom: 0.25rem;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem !important;
    text-align: center;
    padding-top: 0.5rem;
  }
  
  .footer-copyright {
    order: 3;
    font-size: 0.8rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem !important;
    text-align: center;
    order: 2;
  }
  
  .footer-legal-link {
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
  }
  
  .btn-hero {
    order: 1;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
  
  /* Reduzindo ainda mais o espaçamento entre seções */
  .footer .row.g-4.g-lg-5 {
    --bs-gutter-y: 1rem;
  }
  
  .footer-divider {
    margin: 0.75rem 0;
  }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 991px) {
  .footer .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
  
  .footer .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links,
  .footer-contact {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Ajustes finos para desktop */
@media (min-width: 992px) {
  .footer-title {
    text-align: left;
  }
  
  .footer-title::after {
    left: 0;
    transform: none;
  }
  
  .footer-description {
    text-align: left;
  }
  
  .footer-links .footer-link,
  .footer-contact .footer-link {
    text-align: left;
    width: auto;
  }
  
  .footer-contact li {
    justify-content: flex-start;
    text-align: left;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
  
  .footer-legal-link {
    text-align: left;
    display: inline;
    margin-bottom: 0;
    font-size: 0.9rem;
  }
  
  .footer .row.g-4.g-lg-5 {
    --bs-gutter-y: 1.5rem;
  }
}

/* Ajustes extras para mobile muito pequeno */
@media (max-width: 576px) {
  .footer {
    padding: 1rem 0;
  }
  
  .footer .container {
    padding: 0 0.75rem;
  }
  
  .footer .col-12,
  .footer .col-6,
  .footer .col-md-3,
  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    margin-bottom: 0.25rem;
    padding: 0 0.25rem;
  }
  
  .footer-brand {
    margin-bottom: 1.25rem !important;
  }
  
  .footer-logo {
    max-width: 130px;
  }
  
  .footer-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-links .footer-link,
  .footer-contact .footer-link {
    font-size: 0.85rem;
    padding: 0.2rem 0;
  }
  
  .footer-contact li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .footer-social {
    gap: 0.4rem;
  }
  
  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    gap: 0.75rem !important;
  }
  
  .footer-copyright .small {
    font-size: 0.75rem !important;
  }
}




/* ===== Dropdown moderno do usuário ===== */
.navbar-glass .nav-user .user-toggle{
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 14px rgba(3,30,66,.10);
  transition: all .18s ease;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #123a55;
}
.navbar-glass .nav-user .user-toggle:hover{
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 8px 22px rgba(3,30,66,.16);
  color: #0b3550;
}

.user-avatar{
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cria-blue) 0%, var(--cria-blue-dark) 100%);
  color: #fff; font-weight: 700; font-size: .9rem;
  letter-spacing: .3px;
}

.user-dropdown{
  border: 1px solid rgba(3,30,66,.08);
  border-radius: .8rem;
  padding: .35rem;
}
.user-dropdown .dropdown-item{
  border-radius: .55rem;
  padding: .5rem .75rem;
}
.user-dropdown .dropdown-item:hover{
  background: rgba(19,111,189,.08);
}

/* melhora clique em mobile */
@media (max-width: 991px){
  .navbar-glass .nav-user .user-toggle{
    width: 100%;
    justify-content: center;
  }
  
}

/* ===== Dropdown do usuário — aparição sutil ===== */
.navbar-glass .dropdown-menu.user-dropdown {
  --dd-bg: rgba(255, 255, 255, 0.90);
  --dd-brd: rgba(3, 30, 66, 0.10);
  --dd-shadow: 0 12px 28px rgba(3, 30, 66, 0.12);

  opacity: 0;
  transform: translateY(6px) scale(.99);
  transform-origin: top right;
  transition: opacity .16s ease-out, transform .18s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;

  background: var(--dd-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--dd-brd);
  border-radius: .8rem;
  padding: .35rem;
  box-shadow: var(--dd-shadow);
  min-width: 230px;
}

/* estado visível */
.navbar-glass .dropdown-menu.user-dropdown.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ícone da setinha gira quando aberto */
#userMenu .bi-chevron-down {
  transition: transform .18s ease;
}
#userMenu[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

/* hover suave nos itens (continua compatível com seu estilo atual) */
.user-dropdown .dropdown-item {
  border-radius: .55rem;
  padding: .5rem .75rem;
  font-size: .92rem;
  color: #123a55;
  transition: background-color .12s ease, transform .12s ease, color .12s ease;
}
.user-dropdown .dropdown-item:hover {
  background: rgba(19,111,189,.08);
  transform: translateX(1px);
}

/* acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .navbar-glass .dropdown-menu.user-dropdown {
    transition: none;
    transform: none !important;
  }
  #userMenu .bi-chevron-down { transition: none; }
}




/* Itens do dropdown com ícones alinhados e hover suave */
.user-dropdown .dropdown-item i { opacity: .9; }
.user-dropdown .dropdown-item:hover i { transform: translateX(1px); transition: transform .12s ease; }







/* Toast mais moderno */
.toast.text-bg-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 12px 28px rgba(22,163,74,.25);
  border-radius: .8rem;
}
.toast .toast-body { font-weight: 600; }







/* ===== Link "Assista o vídeo do programa" ===== */
.hero-video-link {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border-radius: 0.5rem;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.26), transparent 55%),
              rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  margin-top:1rem;
}

.hero-video-link i {
  font-size: 1.1rem;
}

.hero-video-link:hover {
  color: #ffffff;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.32), transparent 55%),
              rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}

.hero-video-link:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 10px 24px rgba(0,0,0,0.32);
}

/* Mobile: mantém centralizado e mais contido */
@media (max-width: 575.98px) {
  .hero-video-link {
    font-size: 0.9rem;
    padding: 0.3rem 0.75rem;
   
  }
}

/* ===== Lightbox de vídeo moderno ===== */
.video-modal .modal-dialog.modal-video-dialog {
  max-width: 980px;
  margin: 1.5rem auto;
}

.video-modal .modal-video-content {
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(19,111,189,0.45), rgba(11,53,80,0.95));
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  position: relative;
  padding: 0.35rem;
}

.video-modal .ratio {
  border-radius: 1rem;
  overflow: hidden;
}

/* Botão de fechar flutuante */
.video-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  padding: 0.35rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Ajustes para telas menores */
@media (max-width: 767.98px) {
  .video-modal .modal-dialog.modal-video-dialog {
    max-width: 100%;
    margin: 0.75rem;
  }

  .video-modal .modal-video-content {
    border-radius: 1rem;
    padding: 0.3rem;
  }

  .video-modal .ratio {
    border-radius: 0.8rem;
  }
}


/* Botão "Fechar vídeo" no modal */
.video-modal-actions {
  padding: 0.25rem 0.45rem 0.5rem;
}

.btn-video-close {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border-width: 1px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(11, 53, 80, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-video-close i {
  font-size: 1rem;
}

.btn-video-close:hover {
  background: rgba(11, 53, 80, 0.45);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

.btn-video-close:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* Centralizar no mobile, se quiser mais amigável */
@media (max-width: 575.98px) {
  .video-modal-actions {
    justify-content: center;
  }

  .btn-video-close {
    width: auto;
    padding-inline: 1.1rem;
  }
}















.swal2-rounded { border-radius: 1rem !important; }




/* Animações de entrada */
[data-animate]{ opacity:0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
[data-animate].in-view{ opacity:1; transform:none; }
[data-animate="zoom-in"]{ transform: scale(.96); }

/* Overlay de status de validação da foto */
.foto-status-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.foto-status-overlay.aguardando {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
}

.foto-status-overlay.recusada {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
}

.foto-status-overlay i {
    font-size: 0.9rem;
}


/* ===== Section "O que é o CRIA?" ===== */

.section-sobre-cria {
  background: #f6f9fc;
}

.section-sobre-cria .sobre-cria-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(19, 111, 189, 0.08);
  color: #0b3550;
  border: 1px solid rgba(19, 111, 189, 0.20);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Card do vídeo com look "glass" + janela */
.sobre-cria-video-card {
  position: relative;
  border-radius: 1.25rem;
  padding: .9rem .9rem .8rem;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 55%),
              linear-gradient(145deg, rgba(12, 86, 127, 0.98), rgba(15, 99, 165, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

/* Barra superior estilo "janela" */
.sobre-cria-video-header {
  padding: .1rem .1rem .4rem;
}

.sobre-cria-video-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
  opacity: .85;
}
.sobre-cria-video-header .dot-red {
  background: #ff5f57;
}
.sobre-cria-video-header .dot-yellow {
  background: #febc2e;
}
.sobre-cria-video-header .dot-green {
  background: #28c840;
}

/* Wrapper do vídeo */
.sobre-cria-video-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
  background: #000;
}
.sobre-cria-video {
  object-fit: cover;
}

/* Acento do ícone */
.text-accent {
  color: var(--cria-orange);
}

/* Responsividade */
@media (max-width: 991.98px) {
  .section-sobre-cria {
    padding-top: 2.25rem;
  }
  .sobre-cria-video-card {
    margin-top: .5rem;
  }
}

@media (max-width: 575.98px) {
  .section-sobre-cria .heading-section {
    font-size: 1.7rem;
  }
}


/* Deixa todos os títulos prontos para receber pseudo-elementos */
.heading-section {
  position: relative;
  padding-bottom: .75rem; /* espaço para a barrinha/efeito */
}

/* ===== Título: "O que é o CRIA?" ===== */
#sobre-cria .heading-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: #ff8a00;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}

/* ===== Título: "Por que usar o CRIA?" ===== */
#beneficios .heading-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #ff8a00;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}



/* ===== Grade moderna dos benefícios (5 cards) ===== */

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* 2 colunas em telas médias */
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 3 colunas em telas grandes (fica bom em notebook) */
@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 5 colunas em telas bem largas (desktop grande) */
@media (min-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.benefit-item {
  height: 100%;
}

/* Ícones dos benefícios um pouco mais “presentes” */
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}


/* Opcional: ajusta um pouco no mobile */
@media (max-width: 575.98px) {
  #sobre-cria .heading-section::before {
    width: 60px;
  }
  #beneficios .heading-section::after {
    width: 70px;
  }
}













