/* ===============================
   PALETA DA MARCA
================================ */
:root {
  --azul-principal: #B0B7BF;
  --azul-claro:     #DDE4EA;
  --bege-claro:     #D9C5AD;
  --bege-medio:     #CDBBA3;
  --taupe:          #BFA393;
  --texto-escuro:   #5c768e;
  --branco:         #ffffff;
}

/* ===============================
   RESET / BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9fafb;
  color: #5c768e;
  line-height: 1.6;
}

/* ===============================
   CONTAINER / SECTIONS
================================ */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: var(--taupe);
  margin: 20px auto 40px;
  border-radius: 2px;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--taupe);
}

/* ===============================
   BOTÕES
================================ */
.btn {
  display: inline-block;
  background-color: var(--bege-claro);
  color: #fff;
  padding: 15px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--azul-claro);
}

.btn-light {
  background-color: #fff;
  color: var(--taupe);
}

/* ===============================
   ANIMAÇÃO DE SCROLL (REVEAL)
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   HERO
================================ */
.hero {
  position: relative;
  background-image: url("img/dra.ingrid/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 0;
  min-height: 600px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 520px;
  text-align: left;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #fff;
}

/* ===============================
   SOBRE
================================ */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #F5F2EE 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  max-width: 560px;
}

.about-text p {
  color: #5c768e;
}

.about-credentials {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.credentials-list {
  list-style: none;
}

.credentials-list li {
  margin-bottom: 10px;
  color: #5c768e;
}

.about-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ===============================
   AUTORIDADE
================================ */
.section-authority {
  background: linear-gradient(180deg, #FAF7F4 0%, #F3ECE4 100%);
}

.authority-description {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  color: #5c768e;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

.authority-item {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.authority-item h3 {
  color: var(--taupe);
}

.authority-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ===============================
   CONSULTA ONLINE (VÍDEO)
================================ */
.consulta-video-section {
  padding: 80px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.consulta-video-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 70px;
  align-items: center;
}

.video-wrapper {
  max-width: 260px;
}

.video-wrapper video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.video-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
}

.video-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #c8a98d;
}

.video-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #5c768e;
}

.video-list {
  margin-top: 20px;
  padding-left: 20px;
  color: #5c768e;
  line-height: 2;
  font-size: 16px;
}

/* ===============================
   RESULTADOS
================================ */
.section-results {
  background: linear-gradient(180deg, #ffffff 0%, #F9F7F4 100%);
  text-align: center;
}

.results-description {
  max-width: 720px;
  margin: 0 auto 50px;
  color: #5c768e;
  font-size: 1.05rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.result-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 420px;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.result-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  display: block;
}

.result-text {
  font-size: 0.95rem;
  color: #5c768e;
  line-height: 1.6;
  margin-top: 18px;
  margin-bottom: 12px;
}

.result-meta {
  font-size: 0.85rem;
  color: #BFA393;
}

.results-disclaimer {
  display: block;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #5c768e;
}

/* ===============================
   INFORMAÇÕES (PDFs)
================================ */
.pdf-cards-section {
  padding: 140px 40px 100px;
  background: #f7f4f1;
  text-align: center;
}

.pdf-cards-section h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 35px;
  color: #b49486;
}

.pdf-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pdf-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.pdf-card span {
  display: block;
  padding: 18px;
  color: #5c768e;
  font-weight: 500;
  font-size: 15px;
}

.pdf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ===============================
   PROBLEMA / EMPATIA
================================ */
.section-problem {
  background-color: #F9F7F4;
}

.section-problem p {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
  color: #5c768e;
  font-size: 16px;
  line-height: 1.8;
}

.problem-list {
  max-width: 420px;
  margin: 30px auto;
  list-style: none;
}

.problem-list li {
  background: #fff;
  margin-bottom: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.problem-list li:hover {
  transform: translateY(-6px) scale(1.02) perspective(600px) rotateX(2deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.problem-highlight {
  margin-top: 30px;
  text-align: center;
  font-weight: 500;
  color: var(--taupe);
}

/* ===============================
   BENEFÍCIOS
================================ */
.section-benefits {
  background-color: #ffffff;
}

.benefits-subtitle {
  max-width: 780px;
  margin: 0 auto 40px;
  font-weight: normal;
  color: #5c768e;
  text-align: center;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-box h3 {
  color: var(--taupe);
}

/* ===============================
   CTA FINAL
================================ */
.cta {
  background: linear-gradient(135deg, #BFA393, #CDBBA3);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta h2 {
  margin-bottom: 20px;
  color: #ffffff;
}

.cta p {
  margin-bottom: 24px;
  max-width: 600px;
}

.cta .btn {
  margin: 10px 0 30px;
}

.cta p:last-of-type {
  margin-top: 1px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===============================
   POP-UP
================================ */
#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

#popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup-box {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  padding: 40px 35px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.popup-box h3 {
  margin-bottom: 12px;
  color: #5c768e;
}

.popup-box p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #5c768e;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #aaa;
}

.popup-close:hover {
  color: #5c768e;
}

/* ===============================
   FOOTER
================================ */
footer {
  background-color: #eef2f1;
  text-align: center;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-name {
  color: #5c768e;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #5c768e;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a:hover {
  color: var(--bege-medio);
}

/* ===============================
   RESPONSIVO — MOBILE
================================ */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    background-image: url("img/dra.ingrid/mobile.png");
    padding: 80px 0;
  }

  .hero-text {
    text-align: center;
  }

  /* Sobre */
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-photo img {
    width: 180px;
    height: 180px;
  }

  .about-credentials {
    max-width: 320px;
    margin: 20px auto 0;
    padding-top: 20px;
    text-align: center;
  }

  .about-credentials h3 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .credentials-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  /* Vídeo */
  .consulta-video-section {
    padding: 60px 20px;
    margin-bottom: 0;
  }

  .consulta-video-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .video-wrapper {
    width: 100%;
    max-width: 100%;
    order: 2;
  }

  .video-text {
    order: 1;
  }

  .video-wrapper video {
    width: 100%;
    border-radius: 14px;
  }

  .video-text {
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding: 0;
  }

  .video-text h2 {
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 14px;
  }

  .video-text p,
  .video-list {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
  }

  .video-list {
    padding-left: 18px;
  }

  /* Resultados */
  .results-description {
    font-size: 1rem;
  }

  .result-photo {
    height: auto;
  }

  .result-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
  }

  .result-card {
    padding: 22px 18px 24px;
  }

  /* PDFs */
  .pdf-cards-section {
    padding: 60px 20px 80px;
  }

  .pdf-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pdf-card img {
    height: 180px;
    object-fit: cover;
    object-position: center;
  }

  .pdf-card span {
    font-size: 14px;
    padding: 14px;
    line-height: 1.4;
  }
}