/* =====================================================
   STYLE.CSS — ORGANIZADO
   Site Danieli Dias Bento
===================================================== */

/* =========================
   VARIÁVEIS
========================= */
:root{
  --bege:#D1A57E;
  --azul:#75ACEF;
  --branco:#ffffff;
  --texto:#2b2b2b;
  --cinza:#6d6d6d;
  --fundo:#fafafa;
}

/* =========================
   RESET / BASE
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Manrope', sans-serif;
  background:var(--fundo);
  color:var(--texto);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

/* =========================
   HEADER
========================= */
.header{
  width:100%;
  height:80px;
  padding:0 6%;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(250,250,250,0.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.04);
}

.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo img{
  height:65px;
  width:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:35px;
}

.nav a{
  color:var(--texto);
  font-size:0.95rem;
  transition:0.3s;
}

.nav a:hover{
  color:var(--bege);
}

.nav-btn{
  padding:12px 22px;
  border-radius:50px;
  background:var(--bege);
  color:#fff !important;
}

.menu-toggle{
  display:none;
}

/* =========================
   HERO / BANNER
========================= */
.hero{
  width:100%;
  padding-top:75px;
}

.hero-banner,
.hero img{
  width:100%;
  height:auto;
}

.desktop-banner{
  display:block !important;
}

.mobile-banner{
  display:none !important;
}

/* =========================
   SEÇÕES GERAIS
========================= */
.section{
  padding:70px 8%;
}

.section-label{
  display:block;
  margin-bottom:20px;
  color:var(--bege);
  font-size:0.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2px;
}

.section h2{
  margin-bottom:30px;
  font-size:3rem;
  font-weight:500;
  line-height:1.2;
}

.section p{
  color:var(--cinza);
  font-size:1.05rem;
  line-height:1.9;
}

.center{
  max-width:900px;
  margin:0 auto 70px;
  text-align:center;
}

/* =========================
   SOBRE
========================= */
.about{
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  gap:50px;
}

.about-card{
  padding:50px;
  background:#fff;
  border-radius:30px;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.about-card h3{
  margin-bottom:30px;
  font-size:1.5rem;
}

.about-card ul{
  list-style:none;
}

.about-card li{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 0;
  color:var(--cinza);
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.about-card li img{
  width:24px;
  height:24px;
  object-fit:contain;
  flex-shrink:0;
}

/* =========================
   PSICOTERAPIA
========================= */
.therapy{
  display:grid;
  grid-template-columns:1.3fr 0.9fr;
  gap:60px;
  align-items:start;
}

.therapy-content{
  padding:60px;
  background:#fff;
  border-radius:30px;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.therapy-content h2{
  margin-bottom:25px;
}

.therapy-content p{
  line-height:1.9;
}

.therapy-benefits{
  margin-top:30px;
  padding-top:28px;
  border-top:1px solid rgba(209,165,126,0.18);
}

.therapy-benefits h3{
  margin-bottom:18px;
  color:var(--bege);
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:1.5px;
}

.therapy-benefits ul{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 24px;
}

.therapy-benefits li{
  position:relative;
  padding-left:24px;
  color:var(--cinza);
  font-size:0.95rem;
  line-height:1.5;
}

.therapy-benefits li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--bege);
  font-weight:700;
}

/* =========================
   CARDS DE INFORMAÇÃO
========================= */
.info-grid{
  display:grid;
  gap:22px;
}

.info-card,
.info-grid div{
  background:#fff;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.03);
}

.info-card{
  position:relative;
  padding:35px;
  overflow:hidden;
  border:1px solid rgba(209,165,126,0.18);
  border-radius:28px;
  box-shadow:0 18px 45px rgba(0,0,0,0.05);
  transition:0.3s;
}

.info-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg, var(--bege), var(--azul));
}

.info-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 55px rgba(0,0,0,0.08);
}

.info-card small{
  position:absolute;
  top:22px;
  right:30px;
  color:rgba(117,172,239,0.16);
  font-size:2.8rem;
  font-weight:700;
}

.info-icon{
  width:52px;
  height:52px;
  margin-bottom:20px;
  object-fit:contain;
}

.info-card strong,
.info-grid strong{
  display:block;
  margin-bottom:10px;
  color:var(--texto);
}

.info-card strong{
  font-size:1.45rem;
  font-weight:700;
  line-height:1.2;
}

.info-grid strong{
  font-size:1.15rem;
}

.info-card span,
.info-grid span{
  display:block;
  color:var(--cinza);
}

.info-card span{
  font-size:1.05rem;
  line-height:1.5;
}

/* =========================
   PALESTRAS / CARDS
========================= */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  padding:40px;
  margin-bottom:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.04);
  border-radius:28px;
  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.service-card h3{
  margin-bottom:20px;
  font-size:1.3rem;
}

.service-card p{
  color:var(--cinza);
  line-height:1.8;
}

.card-btn{
  margin-top:25px;
  padding:0;
  border:none;
  background:transparent;
  color:var(--bege);
  font-size:0.95rem;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.card-btn:hover{
  color:var(--azul);
  transform:translateX(5px);
}

/* =========================
   MODAL
========================= */
.modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  justify-content:center;
  align-items:center;
  padding:20px;
  background:rgba(0,0,0,0.6);
}

.modal.active{
  display:flex;
}

.modal-content{
  position:relative;
  width:100%;
  max-width:800px;
  max-height:90vh;
  padding:40px;
  overflow-y:auto;
  background:#fff;
  border-radius:24px;
}

.close{
  position:sticky;
  top:0;
  z-index:10;
  float:right;
  padding:5px 10px;
  background:#fff;
  border-radius:50%;
  font-size:32px;
  font-weight:700;
  cursor:pointer;
}

.whatsapp-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 22px;
  border-radius:999px;
  background:#25d366;
  color:#fff;
  font-weight:600;
}

/* =========================
   GALERIA / CARROSSEL
========================= */
.gallery-section{
  padding:120px 8%;
}

.gallery-text{
  margin-bottom:50px;
}

.gallery-slider{
  position:relative;
  max-width:1000px;
  margin:0 auto;
  overflow:hidden;
  border-radius:30px;
}

.gallery-track{
  display:flex;
  transition:transform 0.5s ease;
}

.gallery-track img{
  min-width:100%;
  height:500px;
  object-fit:cover;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  z-index:2;
  width:45px;
  height:45px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,0.5);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  transform:translateY(-50%);
}

.gallery-arrow.left{
  left:15px;
}

.gallery-arrow.right{
  right:15px;
}

/* =========================
   TREINAMENTO
========================= */
.training-box{
  padding:70px;
  border-radius:40px;
  background:linear-gradient(
    135deg,
    rgba(209,165,126,0.15),
    rgba(117,172,239,0.12)
  );
}

.pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-top:40px;
}

.pill-list span{
  padding:14px 22px;
  background:#fff;
  border-radius:50px;
  font-size:0.95rem;
}

.info-btn{
  margin-top:20px;
  padding:12px 24px;
  border:none;
  border-radius:12px;
  background:#111;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.info-btn:hover{
  transform:translateY(-2px);
  opacity:0.9;
}

/* =========================
   CONTATO
========================= */
.contact{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  padding:120px 8%;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.contact-btn{
  padding:14px 26px;
  border-radius:999px;
  color:#fff;
  font-weight:600;
  transition:0.3s;
}

.contact-btn:hover{
  transform:translateY(-3px);
}

.contact-btn.whatsapp{
  background:#25D366;
}

.contact-btn.instagram{
  background:linear-gradient(45deg,#833AB4,#FD1D1D,#FCAF45);
}

/* =========================
   FOOTER
========================= */
.footer{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  padding:50px 8%;
  border-top:1px solid rgba(0,0,0,0.06);
}

.footer p{
  color:var(--cinza);
  font-size:0.95rem;
}

/* =========================
   RESPONSIVO — TABLET
========================= */
@media(max-width:1100px){
  .about,
  .therapy{
    grid-template-columns:1fr;
  }

  .hero{
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero h1{
    font-size:3rem;
  }

  .info-grid{
    grid-template-columns:1fr;
  }

  .gallery{
    grid-template-columns:1fr;
  }

  .gallery img{
    height:400px;
  }

  .contact{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* =========================
   RESPONSIVO — MOBILE
========================= */
@media(max-width:768px){
  .header{
    height:75px;
    padding:0 5%;
  }

  .logo img{
    height:90px;
  }

  .menu-toggle{
    display:block;
    border:none;
    background:none;
    font-size:2rem;
    cursor:pointer;
  }

  .nav{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    display:none;
    flex-direction:column;
    padding:30px;
    background:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
  }

  .nav.active{
    display:flex;
  }

  .hero{
    padding-top:80px;
  }

  .hero img{
    width:100%;
    max-width:100%;
    margin-left:0;
  }

  .desktop-banner{
    display:none !important;
  }

  .mobile-banner{
    display:block !important;
  }

  .section,
  .gallery-section,
  .contact{
    padding:50px 6%;
  }

  .section h2{
    font-size:2.2rem;
  }

  .hero h1{
    font-size:2.5rem;
  }

  .about-card,
  .training-box{
    padding:40px 30px;
  }

  .therapy-content{
    padding:35px;
  }

  .therapy-benefits ul{
    grid-template-columns:1fr;
  }

  .gallery-section{
    padding:70px 0;
  }

  .gallery-slider{
    max-width:100%;
    margin:0 30px;
    border-radius:24px;
  }

  .gallery-track img{
    height:390px;
    object-fit:cover;
    object-position:center top;
  }

  .gallery-arrow{
    width:38px;
    height:38px;
    font-size:18px;
  }

  .gallery-arrow.left{
    left:12px;
  }

  .gallery-arrow.right{
    right:12px;
  }

  .contact{
    flex-direction:column;
    align-items:flex-start;
    gap:25px;
  }

  .contact-actions{
    width:100%;
  }

  .contact-btn{
    width:100%;
    text-align:center;
  }

  .footer{
    flex-direction:column;
    padding:40px 6%;
  }
}
