/* ===================================================
   STYLE.CSS — Dra. Ana Julia Barraqui
   Visual elegante / premium / moderno
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Jost:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #2c1e24;
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

:root {
  --rosa: #d4788f;
  --rosa-claro: #f7dde6;
  --rosa-bg: #faf8f9;
  --texto: #2c1e24;
  --texto-light: #8a6a74;
  --borda: #ecdde3;
  --dark: #2c1e24;
  --white: #ffffff;
  --green: #4caf7d;
  --shadow: 0 15px 40px rgba(0, 0, 0, .08);
  --shadow-rose: 0 15px 40px rgba(212, 120, 143, .2);
  --radius: 18px;
}

/* ─── PROGRESS BAR ─── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--rosa-claro), var(--rosa));
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}

/* ─── NAVBAR ─── */
.snav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 55px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--borda);
  position: sticky;
  top: 0;
  z-index: 998;
  backdrop-filter: blur(10px);
  transition: padding .3s, box-shadow .3s;
}

.snav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 4px 24px rgba(212, 120, 143, .12);
}

.snav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--texto);
  font-weight: 500;
  cursor: default;
}

.snav-logo span {
  color: var(--rosa);
  font-style: italic;
}

.snav-links {
  display: flex;
  gap: 28px;
}

.snav-links a {
  font-size: 13px;
  color: var(--texto-light);
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: .3s;
  position: relative;
}

.snav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rosa);
  transition: width .3s;
}

.snav-links a:hover {
  color: var(--rosa);
}

.snav-links a:hover::after,
.snav-links a.active::after {
  width: 100%;
}

.snav-links a.active {
  color: var(--rosa);
}

.snav-cta {
  background: var(--rosa);
  color: #fff;
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: .3s;
}

.snav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .98);
  z-index: 997;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--texto);
  transition: color .2s;
}

.mobile-menu a:hover {
  color: var(--rosa);
}

/* ─── HERO ─── */
.shero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 92vh;
  padding: 50px 55px;
  background: var(--rosa-bg);
  position: relative;
}

.shero::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rosa-claro) 0%, transparent 70%);
  pointer-events: none;
}

.shero-text {
  z-index: 2;
}

.eyebrow {
  color: var(--rosa);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 18px;
}

.shero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 78px;
  line-height: .95;
  font-weight: 400;
}

.shero-title em {
  display: block;
  color: var(--rosa);
  font-style: italic;
}

.shero-sub {
  margin: 26px 0 34px;
  color: var(--texto-light);
  font-size: 18px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-p,
.btn-s {
  padding: 15px 24px;
  border-radius: 40px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: .3s;
}

.btn-p {
  background: var(--rosa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 120, 143, .3);
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.btn-s {
  border: 1px solid var(--borda);
  color: var(--texto);
  background: #fff;
}

.btn-s:hover {
  border-color: var(--rosa);
  color: var(--rosa);
  transform: translateY(-2px);
}

.shero-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.photo-frame {
  position: relative;
  width: 400px;
}

.frame-bg {
  position: absolute;
  inset: 18px 0 0 18px;
  background: var(--rosa-claro);
  border-radius: 50%;
}

.photo-ph {
  position: relative;
  z-index: 2;
  height: 500px;
  border-radius: 220px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.photo-ph:hover img {
  transform: scale(1.05);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ─── SEÇÕES ─── */
.ssec {
  padding: 95px 55px;
}

.ssec.alt {
  background: var(--rosa-bg);
}

.slabel {
  color: var(--rosa);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 14px;
}

.stitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
}

.stitle em {
  color: var(--rosa);
  font-style: italic;
}

/* ─── SOBRE ─── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.sobre-ph {
  height: 520px;
  border-radius: 28px 90px 28px 90px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sobre-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.sobre-ph:hover img {
  transform: scale(1.04);
}

.sobre-p {
  margin-top: 22px;
  color: var(--texto-light);
  line-height: 1.9;
  font-size: 17px;
}

/* ─── SERVIÇOS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.scard {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px;
  transition: .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.scard::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rosa-claro), var(--rosa));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.scard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--rosa-claro);
}

.scard:hover::before {
  transform: scaleX(1);
}

.scard-ico {
  font-size: 28px;
  margin-bottom: 14px;
  transition: transform .3s;
}

.scard h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin-bottom: 12px;
  font-weight: 500;
}

.scard p {
  color: var(--texto-light);
  line-height: 1.8;
  font-size: 17px;
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 30, 36, .55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(6px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  max-width: 520px;
  width: 90%;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .3s;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--rosa-bg);
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--rosa);
  transition: background .2s;
}

.modal-close:hover {
  background: var(--rosa-claro);
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: .8rem;
}

.modal-body {
  font-size: .92rem;
  line-height: 1.9;
  color: var(--texto-light);
}

.modal-cta {
  display: inline-block;
  margin-top: 1.5rem;
}

/* ─── GALERIA ─── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.gal-item {
  min-height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fdf0f4, #f7dde6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--rosa);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  position: relative;
  overflow: hidden;
  transition: .3s;
  cursor: pointer;
}

.gal-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-rose);
}

.gal-item:first-child {
  grid-column: span 2;
}

.gal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: var(--rosa);
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 30px;
}

.gal-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 120, 143, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s;
}

.gal-item:hover .overlay {
  opacity: 1;
}

/* ─── CONTATO ─── */
.contato-topo {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contato-frase {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--texto-light);
  line-height: 1.6;
  text-align: right;
  font-style: italic;
  max-width: 380px;
}

.contato-divisor {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--rosa), var(--borda) 60%, transparent);
  margin: 44px 0;
}

.contato-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* ── Coluna esquerda: 3 cards empilhados ── */
.cl-infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cl-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 22px 24px;
  flex: 1;
}

.cl-ico {
  font-size: 26px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--rosa-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--borda);
}

.cl-texto {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cl-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--rosa);
}

.cl-valor {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--texto);
  line-height: 1.2;
}

.cl-hint {
  font-size: 15px;
  color: var(--texto-light);
}

/* ── Coluna direita: botão WhatsApp ── */
.cl-wpp {
  position: relative;
  background: var(--rosa);
  border-radius: 24px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(212, 120, 143, .35);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}

.cl-wpp:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 120, 143, .45);
}

.cl-wpp-ico {
  font-size: 60px;
  margin-bottom: 8px;
  transition: transform .3s;
}

.cl-wpp:hover .cl-wpp-ico {
  transform: scale(1.15);
}

.cl-wpp-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.cl-wpp-num {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .04em;
}

.cl-wpp-cta {
  margin-top: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 10px 22px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, .35);
  transition: background .3s;
}

.cl-wpp:hover .cl-wpp-cta {
  background: rgba(255, 255, 255, .28);
}

.cl-wpp-deco {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  pointer-events: none;
}

@media (max-width: 768px) {
  .contato-lista {
    grid-template-columns: 1fr;
  }

  .sobre-ph {
    display: none;
  }
}


/* ─── BACK TO TOP ─── */
#back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--borda);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--texto);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s;
  box-shadow: var(--shadow);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

#back-to-top:hover {
  transform: translateY(-3px);
  border-color: var(--rosa);
  color: var(--rosa);
}

/* ─── FOOTER ─── */
.sfooter {
  background: var(--dark);
  color: rgba(255, 255, 255, .65);
  padding: 32px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flogo {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 28px;
}

.flogo span {
  color: #e8a4b8;
  font-style: italic;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVO ─── */
@media(max-width:1100px) {

  .shero,
  .sobre-grid,
  .form-sec {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shero-title {
    font-size: 62px;
  }
}

@media(max-width:900px) {

  .snav-links,
  .snav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

@media(max-width:768px) {
  .snav {
    padding: 16px 22px;
  }

  .shero,
  .ssec {
    padding: 60px 25px;
  }

  .cards-grid,
  .frow {
    grid-template-columns: 1fr;
  }

  .stitle {
    font-size: 48px;
  }

  .shero-title {
    font-size: 54px;
  }

  .photo-frame {
    width: 100%;
    max-width: 320px;
  }

  .sfooter {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 28px 25px;
  }

  #back-to-top {
    bottom: 7rem;
    right: 1.2rem;
  }
}

/* ─── LOCALIZAÇÃO ─── */

.map-sec {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 40px;
  align-items: center;
}

.map-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 15px;
}

.map-desc {
  color: var(--texto-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 17px;
}

.map-details p {
  margin-bottom: 22px;
  color: var(--texto-light);
}

.map-frame {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVO */
@media(max-width:1100px) {
  .map-sec {
    grid-template-columns: 1fr;
  }

  .map-frame {
    height: 350px;
  }
}

/* ─── TIMELINE DE CURSOS ─── */
/* ─── CURSOS GRID ─── */
.cursos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  margin-top: 52px;
  min-height: 520px;
}

.curso-card {
  position: relative;
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: 40px 38px 36px;
  background: #fff;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.curso-destaque {
  background: linear-gradient(135deg, var(--rosa-bg) 0%, #fff 100%);
}

.curso-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--rosa-claro);
}

.curso-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--rosa-claro);
  line-height: 1;
  margin-bottom: 14px;
  transition: color .3s;
}

.curso-card:hover .curso-num {
  color: var(--rosa);
}

.tl-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--rosa);
  border: 1px solid var(--borda);
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.curso-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--texto);
  transition: color .2s;
}

.curso-card:hover h3 {
  color: var(--rosa);
}

.curso-card p {
  color: var(--texto-light);
  font-size: 15px;
  line-height: 1.8;
}

.curso-deco {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--rosa-claro);
  opacity: .5;
  pointer-events: none;
  transition: transform .4s;
}

.curso-card:hover .curso-deco {
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .cursos-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.site-wrap {
  overflow-x: hidden;
}