﻿/* FONTES */
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Thin.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
}

.custom-container {
  width: 80%;
  max-width: 80%;
}
@media (max-width: 480px) {
  .custom-container {
    width: 95%;
    max-width: 100%;
  }
}

.custom-container-video {
    width: 55%;
    max-width: 800px;
}


@media (max-width: 480px) {
    .custom-container-video {
        width: 95%;
        max-width: 100%;
    }
}

/*CTA*/


.cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;

}

.btn-comprar {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border-radius: 21px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    width: 80%;
    max-width: 100%;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn-comprar:hover {
    background-color: #ffffff;
    color: #4CAF50;
    border: solid 1px #4CAF50;
}

@media (max-width: 768px) {
    .btn-comprar {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .btn-comprar {
        font-size: 14px;
        padding: 10px;
    }
}

/* Titulos */
.titulos {
  margin-bottom: 30px;
}
.titulo {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 25px;
}
.subtitulo {
  font-weight: lighter;
  color: #4d4d4d;
  font-size: 25px;
}
.titulovermelho {
  color: #d50000;
}
.titulopreto {
  color: #000;
}
.titulocinza {
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .subtitulo,
  .titulo {
    font-size: 21px;
  }
}

/* Header */
.header {
  background-color: white;
  padding: 10px 0;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
.header img {
  display: block;
  margin: 0 auto;
}



.video-section .titulo {
    color: #262626;
}

.video-section {
    background-color: #f6b41a;
    height: auto;
    justify-content: center;
}

.video-section .video-container {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.video-section .video-container.ratio {
    --bs-aspect-ratio: 56.25%;
}

.video-section .video-container iframe,
.video-section .video-container .video-frame,
.video-section .video-container img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
    border: 0 !important;
    display: block !important;
    margin: 0 !important;
}

.video-section .video-container img {
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.0);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}


@media (max-width: 768px) {
    .btn-comprar {

        font-size: 19px;
    }
}

/* HERO */
.hero-section {
  position: relative;
  width: 100%;
  height: 50vh;
  max-height: 960px;
  overflow: hidden;
}
.hero-banner-image,
.hero-banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}
.hero-overlay-bg {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%; height: 100%;
  z-index: 1;
}
.hero-overlay-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  text-align: left;
  max-width: 80%;
}
.banner-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}
.banner-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-section .btn-comprar {
  font-size: 18px;
  padding: 12px 24px;
  width: auto;
  max-width: 100%;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero-section { height: 50vh; }
  .hero-overlay-content {
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    max-width: 90%;
    margin: 0 auto;
    justify-content: end;
  }
  .banner-title { font-size: 28px; }
  .banner-subtitle { font-size: 16px; }
  .hero-section .btn-comprar {
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1920px) {
  .banner-title { font-size: 48px; }
  .banner-subtitle { font-size: 24px; }
  .hero-section .btn-comprar { font-size: 20px; }
}

/* BLOCO INTRO */
.bloco-intro { background: #F6F6F6; }
.bloco-intro-texto { font-size: 1rem; }
.bloco-intro-titulo { font-size: 21px; }
.bloco-intro-imagem .bloco-img,
.bloco-intro-imagem source {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 320px;
  min-height: 200px;
  background: #F6F6F6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .bloco-intro-imagem .bloco-img,
  .bloco-intro-imagem source {
    max-height: 240px;
    min-height: 120px;
  }
  .bloco-intro-texto { margin-bottom: 1.5rem; }
}

/* BLOCO DOIS */
.bloco-dois { background: #fff; }
.bloco-dois-imagem .bloco-dois-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 320px;
  min-height: 200px;
  background: #F6F6F6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.bloco-dois-texto p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 1.2em;
}
@media (max-width: 991px) {
  .bloco-dois-imagem .bloco-dois-img {
    max-height: 200px;
    min-height: 120px;
  }
  .bloco-dois-texto { margin-bottom: 1.2rem; }
  .bloco-dois-row { flex-direction: column !important; }
}

/* BLOCO TRÃŠS */
.bloco-tres { background: #F6F6F6; }
.bloco-tres-conteudo { margin: 0 auto; }
.bloco-tres-conteudo p {
  color: #181818;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.2em;
  text-align: center;
}
@media (max-width: 991px) {
  .bloco-tres-conteudo { max-width: 98%; }
  .bloco-tres-conteudo p { font-size: 0.98rem; }
}

/* BLOCO QUATRO */
.bloco-quatro-section { background: #fff; text-align: center; }
.bloco-quatro-description-home {
  text-align: center !important;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #000;
}
.bloco-quatro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Roboto';
}
.bloco-quatro-list li {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 15px;
  color: #666;
}

/* BLOCO HISTORIA ESCOLA */
.bloco-historia-escola-section {
  background: #fff;
}
.bloco-historia-escola-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.bloco-historia-escola-texto {
  flex: 0 0 38%;
}
.bloco-historia-escola-description {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #000;
}
.bloco-historia-escola-description p {
  margin-bottom: 18px;
}
.bloco-historia-escola-description p:last-child {
  margin-bottom: 0;
}
.bloco-historia-escola-image {
  flex: 1;
}
.bloco-historia-escola-image img {
  width: 100%;
  min-height: 360px;
  max-height: 540px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 991px) {
  .bloco-historia-escola-content {
    flex-direction: column;
    gap: 32px;
  }
  .bloco-historia-escola-texto {
    flex: 1 1 auto;
    width: 100%;
  }
  .bloco-historia-escola-image {
    width: 100%;
  }
  .bloco-historia-escola-image img {
    min-height: 280px;
    max-height: none;
  }
}
@media (max-width: 576px) {
  .bloco-historia-escola-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .bloco-historia-escola-content {
    gap: 24px;
  }
  .bloco-historia-escola-image img {
    min-height: 220px;
    border-radius: 12px;
  }
}

/* BLOCO CINCO - Jornada */
.jornada-section {
  padding: 56px 0 48px 0;
  background: #F6F6F6;
}
.jornada-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 52px;
  color: #232323;
  letter-spacing: 0.2px;
}
.jornada-etapas-wrapper { position: relative; margin-bottom: 46px; }
.jornada-linha {
  display: block;
  position: absolute;
  top: 30px; left: 0; right: 0;
  height: 2px;
  background: #17aa5e;
  z-index: 1;
}
.jornada-etapas {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.jornada-etapa {
  width: 22%;
  min-width: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  padding: 0 8px;
}
.jornada-circulo {
  width: 56px;
  height: 56px;
  border: 2px solid #17aa5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #17aa5e;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 16px;
  z-index: 2;
}
.jornada-etapa-titulo {
  font-size: 1.07rem;
  font-weight: 700;
  color: #232323;
  margin-bottom: 5px;
  text-align: center;
}
.jornada-etapa-desc {
  font-size: 0.97rem;
  color: #333;
  text-align: center;
  margin-bottom: 2px;
}
.jornada-suporte-card {
  background: #fff;
  margin: 50px auto 0 auto;
  padding: 30px 28px 22px 28px;
  border-radius: 10px;
  box-shadow: 0 3px 18px rgba(60,60,80,0.08);
}
.jornada-suporte-title {
  font-weight: bold;
  font-size: 1.07rem;
  margin-bottom: 8px;
  color: #222;
}
.jornada-suporte-desc {
  color: #444;
  font-size: 0.97rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .jornada-etapas { gap: 0; }
}
@media (max-width: 700px) {
  .jornada-title { font-size: 21px; margin-bottom: 36px; }
  .jornada-etapas {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .jornada-linha { display: none; }
  .jornada-etapa {
    width: 100%; max-width: 370px; min-width: 0;
    margin: 0 auto; padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
  }
  .jornada-etapa:last-child { border-bottom: none; padding-bottom: 0; }
  .jornada-circulo { margin-bottom: 11px; }
  .jornada-suporte-card {
    margin-top: 34px;
    padding: 22px 8px 16px 8px;
    max-width: 98vw;
  }
}

/* BLOCO SEIS - Modulos */
.modulos-section {
  background: #fff;
  padding: 48px 0 48px 0;
}
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px 24px;
  justify-content: center;
  max-width: 1200px;  
  margin: 0 auto;
}
.modulos-card {
  background: #F6F6F6;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(20,30,38,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;    
}
.modulos-card picture {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.modulos-img {
  width: 100%;
  height: 333px;
  object-fit: cover;
  display: block;
}
.modulos-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px 16px 20px;
}
.modulos-card-title {
  margin-bottom: 10px;
  font-size: 1.04rem;
  color: #232323;
}
.modulos-topicos {
  list-style: none;
  color: #333;
  font-size: 0.96rem;
  margin: 0 0 16px 0;
  padding: 0 0 0 12px;
  min-height: 96px;
}
.modulos-topicos li { margin-bottom: 5px; }
.modulos-topicos-oculto { display: none; }
.modulos-btn {
  background: #fff;
  color: #111;
  border-bottom: 1px solid #39926ae6;
  border: none;
  border-radius: 10px;
  padding: 10px 0;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s;
  margin-top: auto;
}
.modulos-btn:hover { background: #ececec; }
/* Modal */
.modulos-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,34,34,0.18);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
}
.modulos-modal {
  background: #fff;
  border-radius: 10px;
  max-width: 720px;
  width: 95%;
  padding: 32px 18px 24px 18px;
  box-shadow: 0 7px 24px rgba(20,30,38,.18);
  position: relative;
  max-height: 86vh;
  overflow-y: auto;
}
.modulos-modal-fechar {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #888;
  z-index: 10;
}
.modulos-modal-title {
  font-size: 1.22rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 18px;
}
.modulos-modal-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}
.modulos-modal-lista ul {
  flex: 1 1 200px;
  min-width: 190px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.modulos-modal-lista li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #212121;
}
.modulos-modal-lista li:before {
  color: #18b56b;
  font-size: 1rem;
  margin-right: 10px;
  font-weight: bold;
}
@media (max-width: 900px) {
  .modulos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
}
@media (max-width: 600px) {
  .modulos-title { font-size: 1.1rem; }
  .modulos-grid { grid-template-columns: 1fr; gap: 26px 0; }
  .modulos-card { min-height: 0; }
  .modulos-modal { padding: 20px 6px 16px 6px; }
}

/* CTA MEIO */
.cta-section-meio {
  background: #fff;
  padding: 10px 0 52px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cta-container-meio {
  max-width: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title-meio {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #000;
}
@media (max-width: 700px) {
  .cta-section-meio { padding: 0px 0 32px 0; }
  .cta-title-meio {
    font-size: 1.1rem;
    padding: 0 10px;
    margin-bottom: 24px;
  }
  .cta-container-meio { max-width: 90%; }
}

/* PARA QUEM Ã‰ */
.publico-section {
  background: #F6F6F6;
  padding: 56px 0 56px 0;
}
.publico-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: stretch;
}
.publico-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(100,100,110,0.07);
  padding: 34px 28px 26px 28px;
  min-width: 280px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.publico-card-title {
  font-weight: 700;
  font-size: 1.14rem;
  margin-bottom: 10px;
  color: #191919;
}
.publico-card-desc {
  font-size: 1rem;
  color: #313131;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .publico-cards {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .publico-card {
    width: 97%; max-width: 480px; min-width: 0; margin: 0 auto;
    align-items: flex-start;
  }
}

/* BLOCO DEPOIMENTO */
.alunos-section {
  background: #fff;
  padding: 60px 0;
}
.alunos-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}
.alunos-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #e34b3a;
  text-transform: uppercase;
  margin-bottom: 48px;
  letter-spacing: 1px;
}
.alunos-grid {
  display: flex;
  gap: 38px;
  align-items: flex-start;
}
.alunos-feedbacks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 2;
}
.alunos-feedback-img img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(50,60,90,0.10);
  background: #fff;
  transition: transform 0.18s;
}
.alunos-feedback-img img:hover { transform: scale(1.03); }
@media (max-width: 1100px) {
  .alunos-grid { flex-direction: column; gap: 28px; }
  .alunos-feedbacks { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  .alunos-title { font-size: 1.15rem; margin-bottom: 28px; }
  .alunos-section { padding: 32px 0; }
  .alunos-container { padding: 0 6px; }
  .alunos-grid { flex-direction: column; gap: 18px; align-items: center; }
  .alunos-feedbacks {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-right: 5%; margin-left: 5%;
  }
  .alunos-feedback-img img { max-width: 98vw; }
}

/* BLOCO CHEFS */
.chefs-section {
  background: #F6F6F6;
  padding: 48px 0;
}
.chef-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(20,20,20,0.08);
  width: 100%;
  min-height: 190px;
  align-items: center;
  padding: 32px;
  gap: 32px;
  margin-bottom: 20px;
}
.chef-photo {
  width: 170px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  align-self: center;
}
.chef-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chef-name {
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 4px;
}
.chef-role {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.chef-description {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .chef-card {
    width: 96%;
    flex-direction: column;
    align-items: center;
    padding: 24px 12px;
    gap: 18px;
  }
  .chef-photo { width: 70%; max-width: 260px; margin-bottom: 10px; }
  .chef-info { align-items: flex-start; width: 100%; gap: 4px; padding: 15px; }
}

/* BLOCO BONUS */
.bonus-exclusivos-section {
  background: #fff;
  padding: 64px 0;
}
.bonus-exclusivos-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}
.bonus-exclusivos-image img {
  width: 400px;
  max-width: 90vw;
  aspect-ratio: 1/1;
  border-radius: 10px;
  box-shadow: 0 6px 32px 0 rgba(30,40,60,0.10);
  object-fit: cover;
  display: block;
  max-height: 300px;
}
.bonus-exclusivos-texto {
  flex: 1;
  min-width: 280px;
  color: #232323;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 950px) {
  .bonus-exclusivos-content { gap: 24px; }
  .bonus-exclusivos-image img { width: 300px; }
}
@media (max-width: 650px) {
  .bonus-exclusivos-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .bonus-exclusivos-image img {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }
  .bonus-exclusivos-texto {
    align-items: center;
    padding: 0 6vw;
    gap: 12px;
  }
}

/* CTA E PAGAMENTO */
.cta-section {
  background-color: #F6F6F6;
  padding: 60px 0;
}
.ag2-pricing-row {
  align-items: stretch;
}
.ag2-pricing-col {
  display: flex;
}
.pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  flex: 1 1 auto;
}
.pricing-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.pricing-card-pricing {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card-promo-badge {
  box-sizing: border-box;
  width: 100%;
  min-height: 36px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card-promo-de {
  box-sizing: border-box;
  width: 100%;
  min-height: 32px;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card-promo-de .original-price {
  margin: 0;
  line-height: 1.25;
}
.pricing-card-price-main {
  box-sizing: border-box;
  width: 100%;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pricing-card-price-main .final-price {
  margin: 0;
  line-height: 1.25;
}
.pricing-card-price-main .final-price-valor.text-danger {
  font-size: 28px;
  font-weight: 800;
}
.pricing-card-installments {
  box-sizing: border-box;
  width: 100%;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.pricing-card-installments .text-parcela {
  margin: 0 0 4px;
}
.pricing-card-installments .price {
  margin: 0 0 20px;
}
.pricing-card-footer {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 0;
}
.pricing-card-footer .btn-comprar {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.pricing-card-footer .beneficios {
  min-height: 7.5rem;
}
.pricing-card-header h4 {
  font-size: 16px;
  font-weight: 700;
  background: #dee2e6;
  color: #000;
  border-radius: 10px 10px 0 0;
  padding: 10px;
  margin: -20px -20px 20px -20px;
}
.desconto {
  background-color: #f44336;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  display: inline-block;
  padding: 6px 15px;
  font-size: 14px;
  margin-bottom: 10px;
}
.original-price {
  font-size: 21px;
  color: #555;
  margin: 0;
}
.text-danger { font-weight: 700; }
.text-parcela {
  font-size: 21px;
  margin-bottom: 0;
  color: #2e7d32;
}
.final-price {
  font-size: 21px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.final-price-valor { font-size: 28px; }
.price {
  font-size: 45px;
  color: #2e7d32;
  font-weight: bold;
  margin: 0 0 20px 0;
}
.beneficios {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 14px;
  color: #2e7d32;
}
.beneficios li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.beneficios li strong { margin: 0 4px; display: inline-block; }
.beneficios li i {
  color: #2e7d32;
  margin-right: 8px;
  font-size: 14px;
}
.pricing-card hr {
  border: 0;
  border-top: 2px solid #ef9a9a;
  margin: 20px 0;
}

#cta {
  scroll-margin-top: 24px;
}
.mais-comprado {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #feca32;
  color: #000;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .pricing-card { margin-bottom: 30px; }
  .cta-section { padding-bottom: 0; }
}

/* GARANTIA */
.garantia-section { background-color: #F6F6F6; padding: 40px 0; }
.garantia-img { max-width: 100%; height: auto; }
.garantia-title {
  font-family: 'Roboto';
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 1rem;
  color: #6B7072;
}
.garantia-subtitle {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 1rem;
  color: #6B7072;
}
.garantia-text {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #666;
}
@media (max-width: 768px) {
  .garantia-section .row,
  .garantia-titles,
  .garantia-text { text-align: center; }
}

/* PERGUNTAS E RESPOSTAS */
.perguntas-section { background-color: #fff; }
.accordion-button {
  font-family: 'Roboto';
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}
.accordion-button:not(.collapsed) { background-color: #e0e0e0; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { font-size: 1rem; color: #555; }
@media (max-width: 768px) {
  .accordion-button { font-size: 0.875rem; }
}

/* CTA FINAL */
.cta-section-final {
  background: #f5b905;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 0;
}
.cta-container-final {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 0;
}
.cta-title-final {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #000;
}
@media (max-width: 650px) {
  .cta-section-final { min-height: 180px; padding: 0; }
  .cta-container-final { max-width: 96vw; padding: 32px 0; }
}

/* BotÃ£o comprar + animaÃ§Ã£o */
.btn-comprar {
  background-color: #4CAF50;
  color: white;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  border-radius: 21px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: none;
  width: 80%;
  max-width: 100%;
  transition: background-color 0.3s ease;
  animation: shake 2s 1s infinite;
}
.btn-comprar:hover {
  background-color: #fff;
  color: #4CAF50;
  border: solid 1px #4CAF50;
}
@media (max-width: 768px) {
  .btn-comprar { font-size: 16px; padding: 12px; }
}
@media (max-width: 480px) {
  .btn-comprar { font-size: 14px; padding: 10px; }
}
@keyframes shake {
  0% { transform: translateX(0); }
  10% { transform: translateX(-2px) rotate(0.5deg); }
  20% { transform: translateX(2px) rotate(-0.5deg); }
  30% { transform: translateX(-2px) rotate(0.5deg); }
  40% { transform: translateX(2px) rotate(-0.5deg); }
  50% { transform: translateX(-2px) rotate(0.5deg); }
  60% { transform: translateX(2px) rotate(-0.5deg); }
  70% { transform: translateX(-2px) rotate(0.5deg); }
  80% { transform: translateX(2px) rotate(-0.5deg); }
  90% { transform: translateX(-2px) rotate(0.5deg); }
  100% { transform: translateX(0) rotate(0); }
}

/* Galeria auto slider - bloco #gal */
#gal {
  overflow: hidden;
}

.galeria-auto-slider {
  width: 100%;
  min-height: clamp(240px, 34vw, 420px);
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.galeria-auto-slider::before,
.galeria-auto-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.galeria-auto-slider::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.98));
}

.galeria-auto-slider::after {
  bottom: 0;
  height: 72px;
  background: linear-gradient(0deg, #FFFFFF, rgba(255, 255, 255, 0));
}

.galeria-auto-slider__viewport {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.galeria-auto-slider__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: galeria-auto-slider-scroll 20s linear infinite;
  will-change: transform;
}

.galeria-auto-slider:hover .galeria-auto-slider__track {
  animation-play-state: paused;
}

.galeria-auto-slider__item {
  flex: 0 0 auto;
  width: clamp(150px, 17vw, 240px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
    background: #111;
  transform: translateZ(0);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.galeria-auto-slider__item:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.galeria-auto-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes galeria-auto-slider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .galeria-auto-slider {
    min-height: 300px;
  }

  .galeria-auto-slider__item {
    width: 190px;
  }
}

@media (max-width: 575px) {
  .galeria-auto-slider {
    min-height: 240px;
    border-radius: 10px;
  }

  .galeria-auto-slider__viewport {
    padding: 22px 0;
  }

  .galeria-auto-slider__track {
    gap: 14px;
  }

  .galeria-auto-slider__item {
    width: 150px;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .galeria-auto-slider__track {
    animation: none;
  }
}


/* Bloco prova social - novas classes equivalentes ao bloco intro e galeria */
.prova-social-section {
  background: #FFFFFF;
}

.prova-social-texto {
  font-size: 1rem;
}

.prova-social-titulo {
  font-size: 21px;
}

#prova-social-galeria,
.prova-social-galeria-col {
  overflow: hidden;
}

.prova-social-slider {
  width: 100%;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.prova-social-slider::before,
.prova-social-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.prova-social-slider::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.98));
}

.prova-social-slider::after {
  bottom: 0;
  height: 72px;
  background: linear-gradient(0deg, #FFFFFF, rgba(255, 255, 255, 0));
}

.prova-social-slider__viewport {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.prova-social-slider__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: galeria-auto-slider-scroll 20s linear infinite;
  will-change: transform;
}

.prova-social-slider:hover .prova-social-slider__track {
  animation-play-state: paused;
}

.prova-social-slider__item {
  flex: 0 0 auto;
  width: clamp(150px, 17vw, 240px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  transform: translateZ(0);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.prova-social-slider__item:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.prova-social-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
 .prova-social-slider {
    min-height: 300px;
  }

  .prova-social-slider__item {
    width: 190px;
  }
}

@media (max-width: 768px) {
  .prova-social-texto {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575px) {
 .prova-social-slider {
    min-height: 240px;
    border-radius: 10px;
  }

  .prova-social-slider__viewport {
    padding: 22px 0;
  }

  .prova-social-slider__track {
    gap: 14px;
  }

  .prova-social-slider__item {
    width: 150px;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prova-social-slider__track {
    animation: none;
  }
}



/* Slider preparo - duas fileiras em direções opostas */
.preparo-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 0 36px;
  padding: 26px 0;
  background: #FFFFFF;
}

.preparo-slider__viewport {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.preparo-slider__row {
  width: 100%;
  overflow: hidden;
}

.preparo-slider__track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}

.preparo-slider__group {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}

.preparo-slider__row--direita .preparo-slider__track {
  animation: preparo-slider-direita 84s linear infinite;
}

.preparo-slider:hover .preparo-slider__track {
  animation-play-state: paused;
}

.preparo-slider__item {
  flex: 0 0 auto;
  width: clamp(120px, 14vw, 170px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #FFFFFF;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.preparo-slider__item:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.preparo-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes preparo-slider-direita {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.preparo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.preparo-lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.preparo-lightbox__close,
.preparo-lightbox__prev,
.preparo-lightbox__next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.preparo-lightbox__close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.preparo-lightbox__prev,
.preparo-lightbox__next {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}

.preparo-lightbox__prev {
  left: 18px;
}

.preparo-lightbox__next {
  right: 18px;
}

.preparo-lightbox__image {
  max-width: 90%;
  max-height: 85%;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.preparo-lightbox__close:hover,
.preparo-lightbox__prev:hover,
.preparo-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.05);
}

.preparo-lightbox__close:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .preparo-lightbox {
    padding: 16px;
  }

  .preparo-lightbox__close,
  .preparo-lightbox__prev,
  .preparo-lightbox__next {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .preparo-lightbox__prev {
    left: 12px;
  }

  .preparo-lightbox__next {
    right: 12px;
  }

  .preparo-lightbox__image {
    max-width: 100%;
    max-height: 78%;
  }
}

@media (max-width: 480px) {
  .preparo-lightbox__close,
  .preparo-lightbox__prev,
  .preparo-lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .preparo-lightbox__close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 768px) {
  .preparo-slider {
    margin-bottom: 28px;
    padding: 22px 0;
  }

  .preparo-slider__viewport {
    gap: 16px;
  }

  .preparo-slider__group {
    gap: 14px;
    padding-right: 14px;
  }

  .preparo-slider__item {
    width: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preparo-slider__track {
    animation: none !important;
  }
}



/*CERTIFICADO*/


.certificado-section {
    text-align: center;
}

.certificado-title {
    font-weight: bold;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 10px;
}

.certificado-subtitle {
     color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 25px;
   
}

.certificado-description {
    text-align: center;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

.certificado-image {
    max-width: 100%;
    margin: 0 auto;
}

.certificado-image img {
    border-radius: 5px;
    width: auto;
    max-width: 100%;
    height: 300px;
}

@media (max-width: 768px) {
    .certificado-image img {
        height: auto;
    }
}


