/* ===== Tokens ===== */
:root{
  --bg: #0a0a0d;
  --bg-alt: #150610;
  --surface: #17171c;
  --surface-border: #26262c;
  --text: #f5f5f7;
  --text-muted: #9d9da6;
  --text-faint: #6b6b74;
  --pink-1: #ff2e93;
  --pink-2: #d6249a;
  --pink-soft: rgba(255,46,147,0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1160px;
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

*{ box-sizing: border-box; margin:0; padding:0; }

html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a{ color:inherit; text-decoration:none; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.6rem, 5vw, 4rem); }
h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 1rem; }
h3{ font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h4{ font-size: 1.05rem; }

.text-accent{
  background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow{
  color: var(--pink-1);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.divider{
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
  margin: 1.2rem 0 1.5rem;
}

.lead{ color: var(--text-muted); font-size: 1.05rem; max-width: 46ch; }

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity .2s ease;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(255,46,147,0.6);
}
.btn-outline{
  background: transparent;
  border: 1.5px solid var(--surface-border);
  color: var(--text);
}
.btn-outline:hover{ border-color: var(--pink-1); }
.btn-dark{
  background: #0d0d10;
  color: #fff;
}
.arrow{ display:inline-block; }

/* ===== Header ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-border);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-display);
  min-width: 0;
}
.brand-name{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-logo{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: none;
    background: transparent;
    flex-shrink: 0;

}
.nav{
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-link{
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link:hover, .nav-link.active{ color: var(--text); }
.nav-link.active::after{
  content:'';
  position: absolute;
  left:0; right:0; bottom:-6px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
  border-radius: 2px;
}
.header-cta{ flex-shrink: 0; }
.menu-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  z-index: 110;
}
.menu-toggle span{
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity: 0; }
.menu-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.mobile-nav{
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 1.5rem 1.2rem;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-nav .nav-link{
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--surface-border);
  font-size: 1rem;
}
.mobile-nav .btn{ margin-top: 1rem; justify-content: center; width: 100%; }
.mobile-nav.open{ display: flex; }

/* ===== Layout helpers ===== */
.section{ position: relative; padding: 5.5rem 1.5rem; overflow: hidden; }
.section-inner{ max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }
.section-inner + .section-inner{ margin-top: 4rem; }
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.two-col.reverse .col-right{ order: 2; }

/* ===== Hero ===== */
.hero{
  position: relative;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}
.hero-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-photo-wrap{ position: relative; }
.hero-photo{
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--surface-border);
}
.hero-badge{
  position: absolute;
  bottom: -1.2rem;
  right: -0.5rem;
  background: #101014;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 260px;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.6);
}
.hero-badge-icon{ color: var(--pink-1); font-size: 1.2rem; display: inline-flex; }
.hero-badge-icon svg{ width: 1.2rem; height: 1.2rem; }
.hero-badge strong{ display:block; font-size: 0.95rem; }
.hero-badge p{ color: var(--text-faint); font-size: 0.78rem; }

.hero-role{ color: var(--text-muted); font-weight: 600; margin: 1.2rem 0; }
.hero-quote{
  border-left: 3px solid var(--pink-1);
  padding-left: 1rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero-actions{ display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-blob{
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,20,90,0.55), transparent 70%);
  top: -100px; left: -160px;
  z-index: 1;
  filter: blur(10px);
}
.hero-ring{
  position: absolute;
  width: 220px; height: 220px;
  border: 1px solid rgba(255,46,147,0.35);
  border-radius: 50%;
  top: 60px; right: 60px;
  z-index: 1;
}
.hero-wave{
  position: absolute;
  top: 90px; left: -40px;
  width: 55%;
  height: 140px;
  border-top: 1.5px solid rgba(255,46,147,0.35);
  border-radius: 50%;
  z-index: 1;
  transform: rotate(-6deg);
}
.wave-alt{ top: 40px; left: -60px; }

/* ===== Stats ===== */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.stat-card{
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
}
.stat-card h3{
  background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
}
.stat-card p{
  color: var(--text-faint);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.also-with-label{ font-weight: 700; margin: 1.5rem 0 0.8rem; }
.pill-row{ display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill{
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.col-right p{ color: var(--text-muted); margin-bottom: 1rem; }

/* ===== Cards ===== */
.cards-grid{ display: grid; gap: 1.2rem; margin-top: 2rem; }
.cards-grid-3{ grid-template-columns: repeat(3, 1fr); }
.cards-grid-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover{ border-color: rgba(255,46,147,0.4); transform: translateY(-3px); }
.card-icon{ font-size: 1.4rem; margin-bottom: 0.9rem; }
.card-icon svg{ width: 1.6rem; height: 1.6rem; color: var(--pink-1); display: block; }
.card p{ color: var(--text-faint); font-size: 0.85rem; margin-top: 0.3rem; }
.card-highlight{
  background: linear-gradient(160deg, rgba(214,36,154,0.12), var(--surface) 60%);
  border-color: rgba(255,46,147,0.4);
}
.card-tag{ color: var(--pink-1) !important; font-weight: 700; text-transform: uppercase; font-size: 0.7rem !important; letter-spacing: 0.08em; margin-bottom: 0.4rem !important; }
.card-cert{ display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* ===== Método ===== */
.section-metodo{ background: var(--bg-alt); }
.check-list{ list-style: none; margin: 1.6rem 0 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.check-list li{ display: flex; align-items: center; gap: 0.7rem; color: var(--text); font-weight: 500; }
.check{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.phone-mock{
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 380px;
  margin-left: auto;
}
.phone-mock img{ width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.phone-plan{ padding: 1.4rem; }
.phone-plan h4{ margin-bottom: 1rem; }
.plan-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0d10;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Antes e Depois ===== */

.before-after-grid{
    display:flex;
    flex-direction:column;
    gap:25px;
    max-width:1000px;
    margin:50px auto 0;
}

.before-after-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.before,
.after{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background:#111;
}

.before img,
.after img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:contain;   /* NÃO CORTA A FOTO */
    display:block;
    background:#111;
    transition:.3s;
}

.before:hover img,
.after:hover img{
    transform:scale(1.02);
}

.before-tag,
.after-tag{
    position:absolute;
    top:14px;
    left:14px;
    background:#ff2d95;
    color:#fff;
    padding:8px 16px;
    border-radius:999px;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.08em;
    z-index:10;
}

@media(max-width:700px){

    .before-after-card{
        grid-template-columns:1fr 1fr;
        gap:8px;
    }

    .before,
    .after{
        border-radius:12px;
    }

    .before-tag,
    .after-tag{
        font-size:.65rem;
        padding:5px 10px;
        top:8px;
        left:8px;
    }

}
/* Tablet */
@media (max-width:900px){

    .before-after-grid{
        max-width:700px;
    }

    .before img,
    .after img{
        height:300px;
    }

}

/* Celular */
@media (max-width:700px){

    .before-after-grid{
        gap:20px;
        margin-top:35px;
    }

    .before-after-card{
        grid-template-columns:1fr 1fr;
        gap:8px;
    }

    .before,
    .after{
        border-radius:12px;
    }

    .before img,
    .after img{
        height:180px;
    }

    .before-tag,
    .after-tag{
        top:8px;
        left:8px;
        padding:4px 8px;
        font-size:.58rem;
    }

}
/* ===== Slider ===== */
.slider{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/8;
  border: 1px solid var(--surface-border);
}
.slider-img{ width: 100%; height: 100%; object-fit: cover; object-position: top; }
.slider-overlay{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent 70%);
}
.slider-overlay h3{ color: #fff; }
.slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(15,15,18,0.7);
  border: 1px solid var(--surface-border);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-prev{ left: 1.2rem; }
.slider-next{ right: 1.2rem; }
.slider-dots{
  position: absolute;
  bottom: 1.4rem;
  right: 2.5rem;
  display: flex;
  gap: 0.4rem;
}
.slider-dots span{
  width: 22px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
.slider-dots span.active{
  background: linear-gradient(90deg, var(--pink-1), var(--pink-2));
  width: 30px;
}

/* ===== CTA ===== */
.cta{
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #ffd7ec, var(--pink-1) 70%);
  padding: 6rem 1.5rem;
  text-align: center;
}
.cta-ring{
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
}
.cta-inner{ max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta h2{ color: #10050b; margin-bottom: 1rem; }
.cta p{ color: rgba(16,5,11,0.75); margin-bottom: 2rem; font-size: 1.05rem; }

/* ===== Footer ===== */
.footer{ background: var(--bg); border-top: 1px solid var(--surface-border); }
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand{ display: flex; align-items: center; gap: 1rem; }
.footer-brand .brand-logo{
    width: 82px;
    height: 82px;
    border-radius: 50%;
}
.footer-brand h4{ margin-bottom: 0.3rem; }
.footer-brand p{ color: var(--text-faint); font-size: 0.85rem; }
.footer-bottom{
  border-top: 1px solid var(--surface-border);
  padding: 1.2rem 1.5rem;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.8rem;
}

/* ===== Back to top ===== */
.back-to-top{
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(255,46,147,0.6);
  z-index: 90;
  transition: transform .2s ease;
}
.back-to-top:hover{ transform: translateY(-3px); }
.back-to-top.visible{ display: flex; }

/* ===== Responsive ===== */

/* Tablets e telas médias */
@media (max-width: 960px){
  .nav{ display: none; }
  .header-cta{ display: none; }
  .menu-toggle{ display: flex; }
  .hero-inner{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .two-col.reverse .col-right{ order: 0; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .phone-mock{ margin: 0; }
  .section{ padding: 4rem 1.5rem; }
  .section-inner + .section-inner{ margin-top: 3rem; }
}

/* Celulares (retrato) */
@media (max-width: 700px){.before-after-card{
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.before img,
.after img{
    max-height: 220px;
}

.before-tag,
.after-tag{
    font-size: .65rem;
    padding: 5px 10px;
}
  html{ font-size: 15px; }

  .header-inner{ padding: 0.7rem 1.2rem; }
  .brand-logo{ width: 42px; height: 42px; }
  .brand-name{ font-size: 0.95rem; max-width: 140px; }

  .section{ padding: 3.2rem 1.2rem; }
  .section-inner + .section-inner{ margin-top: 2.4rem; }

  .hero{ padding: 2.6rem 1.2rem 3rem; }
  .hero-inner{ gap: 2.2rem; }
  .hero-photo{ aspect-ratio: 3/4; }
  .hero-badge{
    position: static;
    margin-top: 1rem;
    max-width: none;
    width: 100%;
  }
  .hero-quote{ max-width: none; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ justify-content: center; width: 100%; }

  .lead{ max-width: none; }
  .col-right p{ font-size: 0.95rem; }

  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .stat-card{ padding: 1.2rem 1rem; }
  .stat-card h3{ font-size: 1.7rem; }

  .cards-grid-3{ grid-template-columns: 1fr; }
  .cards-grid-2{ grid-template-columns: 1fr; }
  .card-cert{ flex-wrap: wrap; }

  .check-list li{ font-size: 0.95rem; }

  .gallery-grid{ grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }

  .slider{ aspect-ratio: 4/5; border-radius: var(--radius-md); }
  .slider-overlay{ padding: 1.4rem; }
  .slider-arrow{ width: 36px; height: 36px; font-size: 1.1rem; }
  .slider-prev{ left: 0.7rem; }
  .slider-next{ right: 0.7rem; }
  .slider-dots{ right: 1.4rem; bottom: 1rem; }

  .cta{ padding: 3.6rem 1.2rem; }
  .cta h2{ font-size: clamp(1.6rem, 6vw, 2.1rem); }
  .cta p{ font-size: 0.95rem; }

  .footer-inner{ flex-direction: column; text-align: center; padding: 2.4rem 1.2rem; gap: 1.5rem; }
  .footer-brand{ flex-direction: column; }
  .footer-brand .brand-logo{ width: 64px; height: 64px; }
  .footer-inner .btn{ width: 100%; justify-content: center; }

  .back-to-top{
    width: 42px; height: 42px;
    bottom: 1.2rem;
    right: 1.2rem;
    font-size: 1.1rem;
  }
}

/* Celulares pequenos */
@media (max-width: 400px){
  .brand-name{ display: none; }
  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
  h1{ font-size: 2.2rem; }
  h2{ font-size: 1.6rem; }
}

/* Garante que nada estoure a largura da tela em qualquer breakpoint */
@media (max-width: 960px){
  .container, .section-inner, .header-inner{ max-width: 100%; }
}