 @font-face {
   font-family: "Helvetica Neue LT Std 53 Extended";
   src: url("../fonts/Helvetica Neue LT Std 53 Extended.otf") format("truetype");
   /* Caminho para o arquivo da fonte */
   font-weight: normal;
   /* Ou bold, italic, etc. */
   font-style: normal;
   /* Ou italic */
 }

 @font-face {
   font-family: "Helvetica Neue LT Std 63 Medium Extended";
   src: url("../fonts/Helvetica Neue LT Std 63 Medium Extended.otf") format("truetype");
   /* Caminho para o arquivo da fonte */
   font-weight: normal;
   /* Ou bold, italic, etc. */
   font-style: normal;
   /* Ou italic */
 }

 @font-face {
   font-family: "Helvetica Neue LT Std 43 Light Extended";
   src: url("../fonts/Helvetica Neue LT Std 43 Light Extended.otf") format("truetype");
   /* Caminho para o arquivo da fonte */
   font-weight: normal;
   /* Ou bold, italic, etc. */
   font-style: normal;
   /* Ou italic */
 }

 @font-face {
   font-family: "Helvetica Neue LT Std 73 Bold Extended";
   src: url("../fonts/Helvetica Neue LT Std 73 Bold Extended.otf") format("truetype");
   /* Caminho para o arquivo da fonte */
   font-weight: normal;
   /* Ou bold, italic, etc. */
   font-style: normal;
   /* Ou italic */
 }
/* =========================================
   HERO HEADER (CABEÇALHO PRINCIPAL)
========================================= */
.hero-header {
  padding: 40px 20px 20px 20px;
  width: 100%;
}

.hero-header-container {
  max-width: 1900px; /* Segue o mesmo limite do seu layout atual */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Alinha o botão pela base do texto */
  gap: 30px;
}

.hero-text-content {
  max-width: 700px; /* Impede que o texto estique muito */
}

/*  */

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #111424; /* Azul marinho quase preto */
  margin: 0 0 15px 0;
  line-height: 1.1;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  letter-spacing: -1px; /* Deixa as letras mais juntinhas igual no print */
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  color: #555; /* Cinza suave */
  margin: 0;
  line-height: 1.5;
}

.hero-action {
  flex-shrink: 0; /* Impede que o botão seja espremido pelo texto */
}

.btn-download-all {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #eef2f6; /* Fundo cinza/azulado bem claro */
  color: #111424;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-download-all:hover {
  background-color: #e2e8f0; /* Fica um pouco mais escuro ao passar o mouse */
}

/* =========================================
   RESPONSIVIDADE DO HERO
========================================= */
@media (max-width: 992px) {
  .hero-header-container {
    flex-direction: column; /* Empilha texto e botão */
    align-items: flex-start;
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn-download-all {
    width: 100%; /* Botão ocupa 100% no celular para facilitar o clique */
    justify-content: center;
  }
}

/* header */

:root {
  --primary-color: #a30055;
  --bg-card: #f9f0f3;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  background-color: #fff;
  margin: 0;
  font-family: sans-serif;
  background: url('./img/ilustra_seios_depoimento.png');
  font-family: "Helvetica Neue LT Std";
  
}

#app {
  padding: 0px 20px;
  max-width: 1900px;
  margin: 0 auto;
}


.section-container {
  padding: 20px 0px;
  width: 100%;
}

.header-section {
  display: flex;
  border-left: 6px solid var(--primary-color);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  background: #fff;
  padding: 10px 20px;
}

/* Grid Responsivo */
.content-grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.card-item {
  background: #fff;
  border-radius: 8px;
  padding: 10px; /* É isso aqui que garante a "borda" de 10px */
  text-align: center;
  min-width: 0;

  /* Adicione estas duas linhas mágicas: */
  width: fit-content;
  justify-self: center;
}

.video-container-main {
  margin: 0 auto;
  max-width: 1700px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  width: 100%;
}

.video-section.card-item {
  width: 360px;
  max-width: 90%;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: none; /* A sombra virá do wrapper interno */
}

.video-section video {
  width: 100%; /* Ocupa 100% dos 360px do pai */
  height: auto;
  border-radius: 4px;
  display: block;
}

/* Garante que o wrapper do vídeo tenha a mesma sombra das imagens */
.video-section .image-wrapper {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.text-apoio {
  font-size: 24px; /* Aumente o quanto quiser aqui! (Ex: 24px) */
  line-height: 1.6; /* Deixa o texto confortável para ler */
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  margin: 0 0 15px 0;
  color: #333; /* Cor opcional para leitura suave */
}
/* Reaproveitando o botão rosa claro do layout anterior */
.btn-text-apoio {
  margin-top: 20px;
  background-color: #d11559;
  color: #fdf2f5;
  border: none;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  font-weight: 600;
  cursor: pointer;
}
.image-wrapper img {
  width: 300px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.title-section {
  margin-left: 20px;
  font-size: 30px;
  font-weight: 900;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
}

.button-section {
  cursor: pointer;
  background-color: var(--primary-color);
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 40px;
}

.btn-text,
.btn-download {
  cursor: pointer;
  background-color: var(--primary-color);
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  margin-top: 10px;
  width: 100%;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
}
.btn-download-mobile,
.btn-text-apoio {
  cursor: pointer;
  background-color: var(--primary-color);
  color: white;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  border: none;
  border-radius: 4px;
  padding: 8px 10px;
  margin-top: 10px;
  width: 75%;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
}
.btn-text-apoio {
  background-color: var(--bg-card);
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  color: var(--primary-color);
}

/* Controle de Visibilidade Mobile vs Desktop */
.mobile-only {
  display: none;
}
/* Estilo do Dialog (Lightbox) */
#image-modal {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  outline: none;
}

#image-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.text-modal-title {
    font-family: "Helvetica Neue LT Std 63 Medium Extended";
  font-size: 30px;
}

.text-modal-body {
    font-family: "Helvetica Neue LT Std 63 Medium Extended";
  font-size: 20px;
  font-weight: 400;
}

#modal-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: -0px;
  right: 0;
  color: black;
  font-size: 35px;
  cursor: pointer;
  font-weight: bold;
}

#text-modal {
  border: none;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  border-radius: 8px;
  padding: 20px;
  max-width: 650px;
  width: 90%; /* Garante margem no mobile */
  max-height: 80vh; /* O modal não pode ser maior que 80% da tela */
  background: white;
}

#text-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.text-modal-box {
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  max-height: 100%; /* Respeita a altura máxima do pai */
}

/* É AQUI QUE O SCROLL ACONTECE */
.text-modal-body {
  font-size: 18px; /* Reduzi um pouco a fonte para caber mais texto */
  font-weight: 400;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  line-height: 1.5;
  overflow-y: auto; /* Adiciona scroll apenas se precisar */
  margin-top: 15px;
  margin-bottom: 20px;
  padding-right: 10px; /* Espacinho para a barra de rolagem não colar no texto */
}

/* Estilo para os títulos que criamos no JS */
.text-modal-body h4 {
  margin: 0 0 5px 0;
  font-family: "Helvetica Neue LT Std 63 Medium Extended";
  color: var(--primary-color);
  font-size: 18px;
}

@media (max-width: 1635px) {
  .title-section {
    font-size: 25px;
  }
  .content-grid {
    grid-template-columns: repeat(5, max-content);
    justify-content: start;
    gap: 15px;
  }
  .button-section {
    font-size: 14px;
  }
  .image-wrapper img {
    width: 235px;
  }
}
@media (max-width: 1215px) {
  .title-section {
    font-size: 32px; /* Diminui um pouco o título */
  }

  .content-grid {
    display: flex; /* Transforma o grid em linha horizontal */
    overflow-x: auto; /* Permite rolar para o lado */
    scroll-snap-type: x mandatory; /* Efeito de "imã" nos cards */
    padding-bottom: 20px;
    gap: 20px;

    /* Esconde a barra de rolagem nativa para ficar mais limpo */
    scrollbar-width: none; /* Firefox */
  }

  .content-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .card-item {
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  /* Troca a exibição dos botões */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-block !important;
  }
}

/* =========================================
   RESPONSIVIDADE: CELULARES (até 768px)
========================================= */
/* @media (max-width: 1645) {
  #app {
    max-width: none;
  }
} */

@media (max-width: 768px) {
  .header-section {
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid var(--primary-color);
  }
  .text-apoio {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.5;
  }
  .title-section {
    font-size: 26px;
  }


  .actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Remove margens extras dos botões empilhados */
  .btn-text-apoio,
  .btn-download-mobile {
    margin-top: 0;
  }
}

/* @media (max-width: 1760px) {
  .image-wrapper img {
    width: 320px;
  }
}
@media (max-width: 1590px) {
  .image-wrapper img {
    width: 280px;
  }
}
@media (max-width: 1374px) {
  .image-wrapper img {
    width: 240px;
  }
}
@media (min-width: 769px) {
  .image-wrapper img {
    cursor: zoom-in;
  }
}
@media (max-width: 1374px) {
  .title-section {
    font-size: 25px;
  }

  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: inline-block;
  }

  .content-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }

  .card-item {
    min-width: 80%;
    scroll-snap-align: center;
  }
  .image-wrapper img {
    width: 100%;
    height: auto;
  }

  .actions {
    display: flex;
    gap: 5px;
  }
} */
