/* ==========================================================================
   Patrícia Leopoldino — Moderno · Rosa & Borgonha
   ========================================================================== */

:root{
  --ink: #2c1720;
  --ink-soft: #6b4550;
  --blush: #fdf3f4;
  --blush-deep: #f7e2e6;
  --paper: #ffffff;
  --pink: #e79aab;
  --pink-soft: #f3c4cf;
  --burgundy: #7a2340;
  --burgundy-deep: #58152d;
  --line: rgba(122,35,64,0.12);

  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
  --radius: 24px;
  --shadow-soft: 0 24px 60px -28px rgba(88,21,45,0.35);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--blush);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.eyebrow{
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin: 0 0 14px;
}
.eyebrow.center{ text-align:center; }

.section-title{
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.section-title.center{ text-align:center; }

.section-lead{
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 620px;
  margin: 0 0 40px;
}
.section-lead.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* soft gradient blobs backdrop */
.bg-blobs{
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
}
.blob-1{
  width: 520px; height: 520px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
}
.blob-2{
  width: 460px; height: 460px;
  top: 900px; left: -180px;
  background: radial-gradient(circle, var(--burgundy) 0%, transparent 70%);
  opacity: .18;
}
.blob-3{
  width: 400px; height: 400px;
  bottom: -160px; right: -100px;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(88,21,45,0.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(88,21,45,0.65); }
.btn-ghost{
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  color: var(--burgundy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover{ border-color: var(--burgundy); transform: translateY(-2px); }
.btn-small{ padding: 11px 24px; font-size: 14px; }

/* ============ Header ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,243,244,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  height: 84px;
}
.brand{ display:flex; flex-direction:column; line-height:1.2; }
.brand-name{ font-size: 19px; font-weight: 800; color: var(--burgundy-deep); }
.brand-tag{ font-size: 11.5px; letter-spacing:.04em; color: var(--ink-soft); font-weight: 500; }

.main-nav{ display:flex; gap: 32px; margin-left:auto; margin-right: 24px; }
.main-nav a{
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover{ color: var(--burgundy); }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding: 6px;
}
.nav-toggle span{ width:22px; height:2px; background: var(--burgundy); border-radius: 2px; }

/* ============ Hero ============ */
.hero{ padding: 90px 0 70px; overflow: hidden; }
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items:center;
}
.hero-copy h1{
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-copy h1 em{ font-style: normal; color: var(--burgundy); background: linear-gradient(180deg, transparent 60%, var(--pink-soft) 60%); padding: 0 2px; }
.hero-lead{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 34px;
}
.hero-lead strong{ color: var(--burgundy-deep); }
.hero-actions{ display:flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges{ display:flex; gap: 12px; flex-wrap: wrap; }
.hero-badges span{
  font-size: 13.5px;
  font-weight: 600;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--burgundy-deep);
}

.hero-media{ position: relative; }
.hero-frame{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  background: var(--blush-deep);
  border: 6px solid var(--paper);
}
.hero-frame img{ width:100%; height:100%; object-fit: cover; }

.hero-social{
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.hero-social span{ font-size: 12px; font-weight:700; color: var(--burgundy-deep); text-transform:uppercase; letter-spacing:.06em; }
.social-icons{ display:flex; gap: 10px; }
.social-icons a{
  width: 34px; height:34px;
  border-radius: 50%;
  background: var(--blush-deep);
  display:flex; align-items:center; justify-content:center;
  color: var(--burgundy-deep);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-icons a svg{ width: 16px; height: 16px; }
.social-icons a:hover{ background: var(--burgundy); color:#fff; transform: translateY(-2px); }

/* ============ Specialties ============ */
.specialties{ padding: 90px 0; }
.specialty-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.specialty-card{
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 34px 26px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.specialty-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); background: var(--paper); }
.specialty-card h3{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--burgundy-deep);
}
.specialty-card p{ font-size: 15px; color: var(--ink-soft); margin:0; }

/* ============ About ============ */
.about{ padding: 110px 0; }
.about-inner{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items:center;
}
.about-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--paper);
}
.about-role{ font-size: 17px; color: var(--burgundy); font-weight:700; margin: -10px 0 18px; }
.about-copy p{ color: var(--ink-soft); font-size: 16.5px; }
.about-copy strong{ color: var(--ink); }
.service-intro{ font-weight: 600; color: var(--ink); margin: 26px 0 14px; }
.service-list{ margin: 0 0 34px; display:grid; gap: 12px; }
.service-list li{
  font-size: 15.5px;
  padding-left: 30px;
  position: relative;
  color: var(--ink-soft);
  font-weight: 500;
}
.service-list li::before{
  content: "";
  position:absolute; left:0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--burgundy));
}

/* ============ Content / YouTube ============ */
.content-section{ padding: 100px 0; }
.content-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
}
.video-thumb{ position: relative; display:block; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); border: 6px solid var(--paper); }
.video-thumb img{ width:100%; }
.play-btn{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size: 22px; color:#fff;
  background: rgba(88,21,45,0.35);
}
.content-copy h3{ font-size: clamp(24px,2.6vw,32px); font-weight:700; margin: 0 0 16px; color: var(--ink); }
.content-copy p{ color: var(--ink-soft); font-size: 16.5px; margin-bottom: 24px; }

/* ============ Testimonials ============ */
.testimonials{ padding: 90px 0; }
.testimonials .section-title{ max-width: 720px; margin-left:auto; margin-right:auto; }

.google-rating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin: 8px 0 50px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.google-rating .stars{ color: #f5a623; font-size: 16px; letter-spacing: 2px; }

.carousel{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 64px;
}
.carousel-track{
  display:flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card{
  flex: 0 0 100%;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 44px 48px;
  border: 1px solid var(--line);
  margin: 0;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.testimonial-card .stars{ color: #f5a623; font-size: 18px; letter-spacing: 3px; display:block; margin-bottom: 18px; }
.testimonial-card p{
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px;
  color: var(--ink);
  font-weight: 500;
}
.testimonial-card cite{ font-size: 14px; color: var(--burgundy); font-style: normal; font-weight: 700; }

.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 22px;
  color: var(--burgundy);
  cursor: pointer;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.carousel-btn:hover{ background: var(--burgundy); color:#fff; }
.carousel-prev{ left: 0; }
.carousel-next{ right: 0; }

.carousel-dots{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 30px;
}
.carousel-dots button{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.carousel-dots button.is-active{ background: var(--burgundy); transform: scale(1.25); }

/* ============ Contact ============ */
.contact{ padding: 100px 0 110px; }
.contact-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:start;
  margin-top: 20px;
}
.contact h2{ font-size: clamp(26px,3vw,34px); font-weight:700; margin: 0 0 14px; color: var(--ink); }
.contact-list{ display:grid; gap: 20px; margin: 30px 0 34px; }
.contact-label{ display:block; font-size: 12px; text-transform:uppercase; letter-spacing:.08em; color: var(--burgundy); font-weight:700; margin-bottom: 4px; }
.contact-list a{ font-size: 16px; font-weight:600; }
.contact-list a:hover{ color: var(--burgundy); }
.contact-list span{ font-size: 15.5px; color: var(--ink-soft); }

.contact-map{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); border: 6px solid var(--paper); }
.contact-map iframe{ width:100%; height: 360px; border:0; display:block; }
.map-link{
  display:block;
  background: var(--paper);
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--burgundy);
}

/* ============ Footer ============ */
.site-footer{ background: linear-gradient(160deg, var(--burgundy-deep) 0%, #3f0f21 100%); color: var(--blush); padding: 70px 0 24px; }
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(253,243,244,0.14);
}
.footer-brand .brand-name{ font-size: 21px; font-weight: 800; color: #fff; }
.footer-brand .brand-tag{ display:block; margin-top: 8px; color: rgba(253,243,244,0.65); font-size: 13px; }
.footer-col h4{ font-size: 13px; text-transform:uppercase; letter-spacing:.08em; color: rgba(253,243,244,0.55); margin: 0 0 16px; }
.footer-col a, .footer-col span{ display:block; font-size: 14.5px; margin-bottom: 10px; color: rgba(253,243,244,0.9); }
.footer-col a:hover{ color: var(--pink); }
.footer-bottom{ padding-top: 22px; font-size: 13px; color: rgba(253,243,244,0.55); }

/* ============ WhatsApp float ============ */
.whatsapp-float{
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 26px;
  box-shadow: 0 16px 36px -10px rgba(88,21,45,0.6);
  z-index: 200;
  transition: transform .25s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }

/* ============ Reveal animation ============ */
[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].is-visible{ opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 980px){
  .main-nav{
    display:none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 32px 20px;
  }
  .main-nav.is-open{ display:flex; }
  .main-nav a{ padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child{ border-bottom: none; }
  .nav-toggle{ display:flex; }
  .hero-inner, .about-inner, .content-inner, .contact-inner{
    grid-template-columns: 1fr;
  }
  .about-media{ order: -1; }
  .specialty-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ grid-template-columns: 1fr; }
  .hero-social{ position: static; margin-top: 20px; }
}

@media (max-width: 560px){
  .wrap{ padding: 0 20px; }
  .header-inner{ height: 72px; }
  .specialty-grid{ grid-template-columns: 1fr; }
  .hero-actions .btn, .hero-actions{ width: 100%; }
  .hero-actions{ flex-direction: column; }
  .btn-small{ display:none; }
  .blob{ filter: blur(60px); }
  .carousel{ padding: 0 8px; }
  .testimonial-card{ padding: 32px 24px; }
  .testimonial-card p{ font-size: 16px; }
  .carousel-btn{ width: 36px; height: 36px; font-size: 18px; position: static; transform:none; }
  .carousel .carousel-prev, .carousel .carousel-next{
    position: absolute; top: auto; bottom: -54px;
  }
  .carousel-prev{ left: calc(50% - 46px); }
  .carousel-next{ right: calc(50% - 46px); }
  .carousel{ padding-bottom: 60px; }
}
