/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f2ef;
    overflow-x: hidden;
}

body.layout-admin {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

p { 
    font-family: 'Inter', sans-serif; 
}

/* HEADER */
.topo {
    width: 100%;
    background-color: #5A4E9B;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s;
}

.topo.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* CONTAINER */
.container-topo {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* LOGO */

.logo-area { 
    display: flex; 
    align-items: center;
    gap: 45px;
  }
.logo-area img {
    height: 45px;
    width: auto;
}

/* MENU DESKTOP */
.menu-desktop {
    display: flex;
    gap: 40px;
}

.menu-desktop a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.menu-desktop a:hover {
    opacity: 0.7;
}

/* BOTÃO */
.btn-entrar {
    background-color: #E5DCCF;
    color: #5A4E9B;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-entrar:hover {
    background-color: #d5c9b8;
}

/* MENU TOGGLE (Hambúrguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* MENU MOBILE */
.menu-mobile {
    display: none;
    flex-direction: column;
    background-color: #5A4E9B;
    padding: 20px;
    gap: 15px;
}

.menu-mobile a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* RESPONSIVO */
@media (max-width: 900px) {


    .container-topo {
        padding: 15px 40px;
    }
    .menu-desktop,
    .area-botao {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-mobile.active {
        display: flex;
    }


    .menu-item .arrow {
        display: none; 
    }
    .submenu {
        position: static;
        box-shadow: none;
        padding: 0;
    }
    .menu-item-mobile {
    display: flex;
    flex-direction: column;
}

.submenu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submenu-mobile {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
}

.submenu-mobile a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.submenu-mobile a:hover {
    opacity: 0.7;
}

/* Quando ativo */
.submenu-mobile.active {
    display: flex;
}
.arrow {
     transition: transform 0.3s;
     } 
.arrow.open { 
    transform: rotate(180deg);
 }

}


/* Dropdown */
.menu-item {
    position: relative;
}

.menu-item .arrow {
    font-size: 12px;
    margin-left: 5px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #5A4E9B;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-direction: column;
    gap: 10px;
}

.submenu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 15px;
    display: block;
    transition: 0.3s;
}

.submenu a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Mostrar submenu ao passar o mouse */
.menu-item:hover .submenu {
    display: flex;
}

                        /*FIM TOPO!!!!! HEADER*/
.banner-principal {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.selo-banner {
  position: absolute;
  top: 50%;         
  left: 50%;         
  transform: translate(-50%, -50%); 
  width: 40%;      
  height: auto;
  z-index: 2;        
}


                                /*FIM  BANNER PRINCIPAL */

/* ============================= */
/* SOBRE O SEMINÁRIO */
/* ============================= */

.sobre-seminario {
    background-color: #f4f2ef;
    padding-top: 60px;   
    padding-bottom: 70px;
}


.sobre-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    gap: 80px;
}

/* COLUNA ESQUERDA */

.sobre-esquerda {
    width: 40%;
}


.sobre-subtitulo {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    color: #67a5c0;
    width: 50%;
    line-height: 1.7;
    margin: 0 auto 10px auto;
    text-align: right; 
}

.sobre-img-principal img {
    width: 45%;
    display: block;
    margin: 0 auto 10px auto;
    transform: translateX(20px);
}
.sobre-img-hotel img {
    width: 47%; 
    display: block;
    margin: 0 auto  10px auto;
    transform: translateX(22px);
}


/* COLUNA DIREITA */

.sobre-direita {
    width: 60%;
}

.sobre-direita p {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-bottom: 14px;
    color: #333;
    text-align: left;
}
@media (max-width: 992px) {

    .sobre-container {
        flex-direction: column;
        gap: 40px;
        margin-left: -10px;
    }

    .sobre-esquerda,
    .sobre-direita {
        width: 100%;
    }

    .sobre-direita p{
        margin-left: 50px;
        width: 80%;
        text-align: center;
        
    }
}


/* ============================= */
/* DESTAQUES */
/* ============================= */

.destaques-seminario {
    padding: 10px 0;
    background-color: #f5f3f0;
}

.container-destaques {
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
}

/* TOPO */
.topo-destaques {
    text-align: center;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

.video-destaque {       
   display: inline-block; 
    max-width: 90%;
   height: auto;
    transform: translateX(13px);
}


/* CARDS */

.cards-destaques {
    display: flex;
    margin-bottom: 70px;
    position: relative;
}


.card {
    padding: 50px;
}

.card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    font-size: 16px;
    margin-bottom: 25px;
        font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.cards-wrapper {
    width: 92%;
    max-width: 850px; 
    margin: 0 auto;
}


.titulo-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.titulo-card h3 {
    margin: 0;
}

.detalhe-roxo {
    width: 12px;
    position: relative;
     transform: translateX(3px);
   
}


.card-amarelo {
    background-color: #f2b632;
     flex: 0 0 35%;
       position: relative;
    margin-right: -15px;  
    border-radius: 18px;
    z-index: 2;

}

.card-amarelo P {
    color: #4b4b8f;
    font-family: 'Inter', sans-serif;
   font-size: 16px; 
   
}

.card-amarelo h3 {
    color: #4b4b8f;
    font-weight: 800; 
}
.card-bege {
    background-color: #e6ded6;
    flex: 0 0 70%;
     border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;

    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.card-bege p {
    padding-left: 50px;   
}


.card-bege h3 {
    color: #4b4b8f;
    font-weight: 800;
    margin-top: -1px;
    padding-left: 50px;

}

/* BOTÕES */

.btn-roxo {
    display: block;
    background-color: #4b4b8f;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 12px;
    font-weight: 700;
    text-align: center;
    transition: 0.3s ease;
}

.btn-roxo:hover {
    opacity: 0.9;
}

.btn-roxo.pequeno {
    display: inline-block;
    width: auto;
    font-size: 14px;
    padding: 10px 16px;
}

.botoes-inline {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.botoes-inline .btn-roxo {
    padding: 14px 28px;   
    min-width: 200px;     
    text-align: center;
}



.link-patrocinadores {
    display: inline-block;
     text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #4b4b8f;
    text-decoration: underline;
}

/* INFOS */

.infos-seminario {
       width: 92%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-left: 50px;
    margin-bottom: 70px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-esquerda {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 40%;
}

.info-esquerda img {
    width: 80px;
}

.info-esquerda h4 {
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    margin: 0;
}

.linha-divisoria {
    width: 2px;
    height: 70px;
    background: #000;
    margin: 0 40px;
}

.info-direita {
    flex: 1;
}

.info-direita p {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}


.azul {
    color: #2C7DA0;
}

.laranja {
    color: #F25C05;
}

.amarelo {
    color: #F2B632;
}


/* RESPONSIVO */

@media (max-width: 992px) {

    .cards-destaques {
        flex-direction: column;
        gap: 25px;
    }

    .destaques-seminario {
        padding-top: 0;
    }


    .card {
        padding: 30px;
        border-radius: 22px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .card-amarelo,
    .card-bege {
        flex: unset;
        margin: 0;
        border-radius: 22px;
    }

     .card-amarelo {
        background: linear-gradient(135deg, #f2b632, #ffd978);
    }

    .card-bege {
        background: #ffffff;
    }

    .card:active {
        transform: scale(0.98);
    }

      .botoes-inline {
        gap: 12px;
    }

        .btn-roxo {
        border-radius: 12px;
        font-size: 15px;
        letter-spacing: 0.5px;
    }

     .bola-roxa {
         width: 60px;       
        top: 15px;           
    }

      .linha-2 {
        margin-top: -10px; 
        margin-left: 0;    
    }

    .topo-destaques h2 {
        font-size: 22px;   
        line-height: 1.2;
        margin-top: -70px;
    }
   /* INFOS RESPONSIVO */


    .infos-seminario {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }


    .info-item {
       background: linear-gradient(180deg, #ffffff, #f9f9fb);
        border-radius: 20px;
        padding: 25px 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
        flex-direction: column;
        text-align: center;
        gap: 18px;
        transition: all 0.3s ease;
    }
    

  
    .info-item:active {
        transform: scale(0.98);
    }

    .info-esquerda {
        flex-direction: column;
        gap: 10px;
    }

    .info-esquerda img {
        width: 55px;
    }

    .info-esquerda h4 {
        font-size: 22px;
        line-height: 1.2;
    }

    .info-direita p {
        font-size: 15px;
        max-width: 95%;
        margin: 0 auto;
        line-height: 1.5;
    }

    .linha-divisoria {
        display: none;
    }

    .video-destaque {       
   display: inline-block; 
    max-width: 90%;
   height: auto;
    transform: translateX(2px);
}

}

/*RODAPE*/

.footer {
    background: #4b3f8f; 
    color: #fff;
    margin-top: auto;
}

.corpo-news {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-titulo {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
      text-align: center;
}
.footer-texto,
.caixa-news p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    
}
#email-form {
    margin-top: 10px;
    display: flex;
}

#email-newslatter {
    width: 220px;
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    font-size: 12px;
}

#email-form button {
    margin-left: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    background: #fff;
    color: #4b3f8f;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.realizacao img {
    max-width: 85px;
    transform: translateX(12px);
    margin-top: -8px;
}
.footer-barra {
    padding: 15px 20px;
    background: #3a3070;
}
.corpo-footer {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links img {
    width: 22px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-links img:hover {
    opacity: 1;
}


@media (max-width: 768px) {

    
    .footer {
        margin-top: 60px;
    }

     .corpo-news {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .corpo-news > div {
        width: 100%;
        max-width: 400px; 
    }

    .corpo-footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    /* FORMULÁRIO */

    #email-form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #email-newslatter {
        width: 100%;        
        max-width: 280px;
    }

    #email-form button {
        width: 100%;
        max-width: 280px;
        margin-left: 0;    
    }

    /* LOGO REALIZAÇÃO */

    .realizacao img {
        transform: none;  
        margin-top: 10px;
    }

}


                        /*MENSAGEM  ELEGANTE!!!!*/

.w-form-done {
  display: none;
  background: #e6f4ea;
  color: #2e7d32;      
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid #c8e6c9; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  animation: fadeIn 0.4s ease-in-out;

  margin-top: 15px;
}

/* Mensagem de erro */
.w-form-fail {
  display: none;
  background: #fff3e0; 
  color: #e65100;     
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid #ffe0b2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  animation: fadeIn 0.4s ease-in-out;
}

/* Animação suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


                /* PATROCINADORES */


.titulos-point {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.titulo-home {
    font-size: 40px;
    font-weight: 700;
    color: #4b3f8f;
    letter-spacing: -1px;
    line-height: 1.15;
}

/* Linha vertical sofisticada */
.titulos-point::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 5px;
    width: 4px;
    height: 55px;
    background: linear-gradient(180deg, #4b3f8f, #6a5acd);
    border-radius: 4px;
}

.titulo-home::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 16px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f2b632, transparent);
}



.titulos-point::after {
    content: "";
    position: absolute;
    left: 18px;
    top: -4px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #f2b632, #ffd86b);
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffffff;
}





@media (max-width: 768px) {

    .titulos-point {
        padding-left: 25px;
        margin-bottom: 40px;
    }

    .titulos-point::before {
        height: 35px;
        left: 8px;
    }

    .titulos-point::after {
        left: 3px;
        width: 12px;
        height: 12px;
    }

    .titulo-home {
        font-size: 26px;
    }
}


/* PATROCINADOR IMAGENS */


.galeria.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.galeria.logos a {
    flex: 1 1 350px; 
    max-width: 450px;
    text-decoration: none;
}

.background-escritorios {
    width: 100%;
    aspect-ratio: 16 / 9; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; 
}


@media (max-width: 768px) {
    .galeria.logos {
        gap: 25px;
    }

    .galeria.logos a {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/*PROGRAMAÇÃO , PALESTRANTES E INSCRICOES */

.corpo {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


.corpo p {
    font-size: 16px;
    line-height: 1.6; 
    font-family: 'Inter', sans-serif; 
    color: #444;
    max-width: 900px;
    margin: 0 0 20px 0; 
    font-weight: 400;
    text-align: left;
}


.bloco-secao {
    padding: 70px 50px;
    margin-bottom: 60px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(75, 63, 143, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04);

    transition: all 0.4s ease;
}

.bloco-secao:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(75, 63, 143, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.05);
}


.bloco-secao:not(:last-child)::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    margin: 60px auto 0 auto;
    background: linear-gradient(to right, transparent, #d8d3ff, transparent);
}


/* ============================= */
/* SEÇÃO INVESTIMENTO */



#Investimento {
    background: #8f88b6;
    padding: 15px 0;
}

#Investimento .corpo {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Título */
#Investimento .titulo-home {
    color: #ffffff;
    text-align: left;
}

.colunas-inscricao {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 5px;
    gap: 40px;
}

/* Cada coluna */
.investimento-colunas {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Faz o título aparecer antes dos cards */
.investimento-colunas .invest-subtit {
    order: -1;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

/* ============================= */
/* CARDS */
/* ============================= */

.coluna-incri {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    width: 230px;
}

/* Online - deixa lado a lado */
.colunas-inscricao .investimento-colunas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

/* Mantém título acima mesmo com flex row */
.colunas-inscricao .investimento-colunas .invest-subtit {
    width: 100%;
    order: -1;
}


.colunas-inscricao + .colunas-inscricao { 
    border-top: 2px solid rgba(255,255,255,0.4);
    margin-top: 40px; padding-top: 25px;
    position: relative; 
    border-top: none
} 
.colunas-inscricao + .colunas-inscricao::before { 
    content: "";
     position: absolute;
      top: -2px; 
      left: 0;
       width: 90%;
        height: 3px;
         background: linear-gradient(to right, transparent, #fff, transparent); 
}

/* Título dentro do card */
.investimento-tit {
    color: #5A4E9B;
    font-family: 'Inter', sans-serif; 
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.20;
}

/* Caixa preço */
.preco-caixa {
    line-height: 1.20;
    display: flex;
    align-items: center;
}

.rs {
    color: #5A4E9B;
    margin-right: 5px;
}

.preco {
    color: #5A4E9B;
    font-size: 25px;
    font-weight: bold;
}

/* ============================= */
/* TEXTO ENCERRADO */
/* ============================= */

.investimento-colunas h4 {
    color: #ffffff;
    font-weight: normal;
    margin-top: 5px;
}


/* BOTÃO INSCRIÇÃO - PREMIUM */

#Investimento .link-programa {
    position: relative;
    display: inline-block;
    margin: 50px 0 0; /* remove centralização */
    padding: 16px 38px;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;

    color: #2d2d2d;
    background: linear-gradient(135deg, #F5C400 0%, #FFD84D 100%);
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.4);

    transition: all 0.3s ease;
    overflow: hidden;
}

/* Remove centralização antiga */
#Investimento .link-programa {
    width: auto;
    margin-left: 0;
    margin-right: 0;
}

/* Brilho suave */
#Investimento .link-programa::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

/* Hover elegante mas mais discreto */
#Investimento .link-programa:hover {
    transform: translateY(-4px);
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.22);
}

#Investimento .link-programa:hover::before {
    left: 130%;
}

#Investimento .link-programa:active {
    transform: translateY(-1px);
}
/*Pagamentos*/

#Formas-de-Pagamento {
  padding: 10px 0;
  color: #2d2d2d;
}


/* Badges principais */
.formas-principais {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.badge-pagamento {
  background: #f5f5f5;
  color: #5A4E9B;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.05);
}

/* Subtítulos */
.subtitulo-pagamento {
  color: #5A4E9B;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Listas */
.lista-pagamento {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.lista-pagamento li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}


/*           ASSOCIE - SE                        */


.incricoes-ibccrim {
  padding: 10px 0;
}

/* Card introdutório com fundo roxo */
.card-beneficios-intro {
  background: #5A4E9B; /* roxo institucional */
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  margin: 0 auto 40px auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
 min-height: 100%;
}

.card-beneficios-intro .logo-beneficios {
  width: 120px;
  height: auto;
}

.card-beneficios-intro .texto-intro {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  max-width: 700px;
}

/* Grid dos benefícios */
.incricoes-ibccrim .beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop: 4 colunas */
  gap: 25px;
  margin-top: 30px;
}

/* Cada card de benefício */
.inscr-ibccrim-colunas {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inscr-ibccrim-colunas:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Imagem dentro do card */
.beneficios-img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

/* Título do benefício */
.inscr-ibccrim-tit {
  font-size: 18px;
  font-weight: 600;
  color: #5A4E9B;
  margin-bottom: 8px;
}

/* Texto do benefício */
.texto-geral {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

/* ============================= */
/* RESPONSIVIDADE */
/* ============================= */

/* Tablet grande */
@media (max-width: 1024px) {
  .incricoes-ibccrim .beneficios-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  }
}

/* Tablet médio */
@media (max-width: 768px) {
  .incricoes-ibccrim .beneficios-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
  }

  .card-beneficios-intro {
    padding: 20px 15px;
  }

  .card-beneficios-intro .logo-beneficios {
    width: 90px;
  }

  .card-beneficios-intro .texto-intro {
    font-size: 16px;
    max-width: 100%;
  }
}

/* Celular pequeno */
@media (max-width: 480px) {
  .incricoes-ibccrim .beneficios-grid {
    grid-template-columns: 1fr; /* 1 coluna */
  }

  .card-beneficios-intro {
    padding: 15px 10px;
    border-radius: 12px;
  }

  .card-beneficios-intro .logo-beneficios {
    width: 70px;
  }

  .card-beneficios-intro .texto-intro {
    font-size: 15px;
  }
}



/* Texto final de chamada */
.texto-geral.ementa {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  text-align: center;        /* centraliza para dar impacto */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Link dentro do texto */
.texto-geral.ementa .link-texto {
  color: #5A4E9B;            
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.texto-geral.ementa .link-texto:hover {
  color: #3d3475;            
  border-bottom: 2px solid #5A4E9B; 
}


/* SEÇÃO REGULAMENTO PREMIUM */

#Regulamento {
    background: linear-gradient(135deg, #4B3F8A 0%, #5A4E9B 50%, #6C5ACD 100%);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

/* leve textura/efeito luz */
#Regulamento::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

/* container interno */
#Regulamento .corpo {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Título */
#Regulamento .titulo-home {
    color: #ffffff;
    text-align: left;
    margin-bottom: 10px;
    font-size: 32px;
}

/* Linha amarela elegante */
#Regulamento .titulo-home::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f2b632, transparent);
}

/* BOTÕES REGULAMENTO */


#Regulamento .link-programa {
    position: relative;
    display: inline-block;
    margin-top: 35px;
    margin-right: 20px;
    padding: 16px 36px;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;

    color: #2d2d2d;
    background: linear-gradient(135deg, #F5C400 0%, #FFD84D 100%);
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.4);

    transition: all 0.3s ease;
    overflow: hidden;
}

/* brilho animado */
#Regulamento .link-programa::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

/* Hover */
#Regulamento .link-programa:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35);
}

#Regulamento .link-programa:hover::before {
    left: 130%;
}

/* Clique */
#Regulamento .link-programa:active {
    transform: translateY(-1px);
}


/*Certificado online */


/* ============================= */
/* QUADRADO EMAIL PREMIUM */
/* ============================= */

.link-e-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 28px;
    margin-top: 25px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;

    color: #4b3f8f;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;

    transition: all 0.3s ease;
}

/* Hover elegante */
.link-e-mail:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Clique */
.link-e-mail:active {
    transform: translateY(-1px);
}



@media (max-width: 768px) {

    .titulos-point {
        padding-left: 25px; /* mantém espaço da linha */
        margin-bottom: 35px;
    }

    .titulo-home {
        font-size: 26px;
        line-height: 1;
    }

    .titulos-point::before {
        left: 10px;   /* aproxima da lateral */
        height: 32px; /* menor para não ficar desproporcional */
        top: 4px;
    }

    .titulos-point::after {
        left: 6px;
        top: -2px;
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 4px #fff;
    }



    #Investimento {
        padding: 50px 20px;
    }

    #Investimento .titulo-home {
        font-size: 28px;
        line-height: 1.2;
    }

    #Investimento .titulo-home::after {
        width: 50px;
        height: 3px;
        margin-top: 12px;
    }

    /* Colunas viram bloco */
    .colunas-inscricao {
        flex-direction: column;
        gap: 50px;
        margin-top: 40px;
    }

    .investimento-colunas {
        width: 100%;
    }

    /* Títulos de categoria */
    .invest-subtit {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 0.3px;
    }

    /* Texto encerrado */
    .investimento-colunas h4 {
        font-size: 15px;
        opacity: 0.8;
        margin-bottom: 10px;
    }

    /* Cards */
    .coluna-incri {
        width: 100%;
        padding: 24px;
        border-radius: 14px;
        margin-bottom: 18px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .coluna-incri:active {
        transform: scale(0.98);
    }

    .investimento-tit {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    /* Preço */
    .preco-caixa {
        justify-content: center;
    }

    .rs {
        font-size: 16px;
    }

    .preco {
        font-size: 30px;
        font-weight: 700;
    }

    /* Promo box */
    .promo-caixa {
        margin-top: 18px;
        padding: 15px;
        border-radius: 10px;
        background: #f3f0ff;
    }

    .promo {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #5A4E9B;
    }

    .promo-texto {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .link-programa {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px;
        margin-top: 40px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        background: #F5C400;
        color: #2d2d2d;
        transition: all 0.2s ease;
    }

    .link-programa:active {
        transform: scale(0.98);
    }

}



