:root {
  color-scheme: only light;
  --bg: #fbf7f8;
  --paper: #ffffff;
  --ink: #21171c;
  --muted: #74656c;
  --line: #ecd9e2;
  --brand: #cc3f77;
  --brand-dark: #a72f60;
  --brand-soft: #fff6fa;
  --accent: #7aa99a;
  --shadow: 0 18px 42px rgba(129, 62, 89, .12);
  --radius: 8px;
  --container: 1200px;
  --font-title: "Playfair Display", "Archivo", Georgia, serif;
  --font-body: "Inter", "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

html {
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  min-height: 100svh;
}

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

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

[hidden] {
  display: none !important;
}

.container {
  width: min(var(--container), calc(100% - 38px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
  line-height: 1.65;
}

.topbar {
  background: #21171c;
  color: #fff;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.topbar__dot {
  opacity: .55;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(236, 217, 226, .9);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(62, 34, 45, .06);
}

.header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(190px, 300px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.brand-slot,
.header .brand {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__wordmark {
  width: min(100%, 280px);
  height: auto;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.nav__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 16px;
  color: #4c3d44;
  font-size: 13px;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.nav__link:hover {
  border-color: var(--line);
  background: var(--brand-soft);
  color: var(--brand);
  transform: translateY(-1px);
}

.nav__link.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(204, 63, 119, .22);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font: 800 13px var(--font-body);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn--primary,
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(204, 63, 119, .24);
}

.btn--mini {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
}

.page-hero {
  padding: 44px 0 18px;
}

.page-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1,
.page-hero h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
}

.section {
  padding: 54px 0;
}

.section,
.lp-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.section--soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff4f8;
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section__header h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(30px, 4vw, 44px);
}

.link,
.section__header a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cat,
.paper,
.card,
.cta-band,
.note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cat {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.cat__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.cat__text strong {
  display: block;
}

.cat__text span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.paper {
  padding: 24px;
}

.paper--soft {
  background: #fff8fb;
}

.paper h2,
.paper h3,
.cta-band h2 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  line-height: 1.12;
}

.bullets {
  margin: 12px 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.two-col {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
}

.value,
.contact-card {
  border-top: 1px solid var(--line);
  padding: 13px 0;
}

.value:first-of-type,
.contact-card:first-of-type {
  border-top: 0;
}

.value p,
.contact-card p {
  margin: 4px 0 0;
}

.note {
  margin-top: 14px;
  padding: 14px;
  box-shadow: none;
}

.filters {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.field select,
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
  font: 500 14px var(--font-body);
}

.form {
  display: grid;
  gap: 14px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card__badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.card__img {
  aspect-ratio: 4 / 3;
  background: #fff8fb center / contain no-repeat;
}

.card[data-name="LP Beauty"] .card__img {
  background-image: url("../assets/img/Produto_LP.jpg");
}

.card[data-name="Ebook Rotina de Pele em 7 Dias"] .card__img {
  background-image: url("../assets/img/EbookLimpezadePele.webp");
}

.card[data-name="Ebook - Primeiros passos Barbeiro"] .card__img {
  background-image: url("../assets/img/Barbearia_iniciante.webp");
}

.card__title {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px 16px 0;
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.12;
}

.card__desc {
  min-height: 56px;
  margin: 10px 0 14px;
  padding: 0 18px;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.card__row {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
}

.price {
  display: block;
  color: var(--brand);
  text-align: center;
  font-size: 22px;
  font-weight: 900;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}

.video-grid,
.tips-feature {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tip-card,
.video-card {
  overflow: hidden;
}

.tip-card--main {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 241, 246, .96)),
    url("../assets/img/LP.webp") right bottom / 210px auto no-repeat;
}

.pill {
  display: inline-flex;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #fff4f8 center / cover no-repeat;
}

.video-card--limpeza .video-frame {
  background-image: url("../assets/img/dicas/sobrancelha.webp");
}

.video-card--rotina .video-frame {
  background-image: url("../assets/img/dicas/tipo_pele.webp");
}

.video-card--favoritos .video-frame {
  background-image: url("../assets/img/dicas/cabelo_feminino.webp");
}

.video-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.video-card__body h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 26px;
  line-height: 1.12;
}

.hero__cta {
  margin-top: auto;
}

.seo-faq {
  max-width: 920px;
}

.seo-faq details {
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.seo-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.seo-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 26px;
  padding: 36px 0;
}

.footer h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
}

.footer a:hover {
  color: var(--brand);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 15px 0 18px;
}

@media (max-width: 980px) {
  .header__inner,
  .page-hero__inner,
  .two-col,
  .cta-band,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .header__inner {
    gap: 12px;
    padding: 14px 0;
  }

  .brand-slot,
  .header .brand {
    justify-content: center;
  }

  .nav {
    justify-content: center;
  }

  .page-hero__inner,
  .cta-band {
    align-items: stretch;
  }

  .grid--4,
  .grid--3,
  .video-grid,
  .tips-feature {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 26px));
  }

  .topbar__inner {
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .brand__wordmark {
    width: min(100%, 250px);
  }

  .nav {
    gap: 8px;
  }

  .nav__link {
    flex: 1 1 110px;
    min-height: 38px;
    padding: 0 10px;
    text-align: center;
  }

  .section {
    padding: 38px 0;
  }

  .section__header,
  .form__row,
  .filters,
  .grid--4,
  .grid--3,
  .video-grid,
  .tips-feature {
    grid-template-columns: 1fr;
  }

  .section__header,
  .page-hero__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer {
    text-align: center;
  }
}

/* Mobile polish */
@media (max-width: 520px) {
  :root {
    --shadow: 0 10px 24px rgba(129, 62, 89, .10);
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .topbar {
    display: none;
  }

  .header {
    position: sticky;
  }

  .header__inner {
    min-height: auto;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .brand-slot {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .header .brand {
    margin: 0 auto;
  }

  .brand__wordmark {
    width: min(220px, 78vw);
    margin: 0 auto;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    justify-items: stretch;
  }

  .nav__link {
    min-width: 0;
    min-height: 36px;
    flex: none;
    border-radius: 999px;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.1;
    white-space: normal;
  }

  .nav__link:nth-child(4) {
    grid-column: 1 / 2;
  }

  .nav__link:nth-child(5) {
    grid-column: 2 / 3;
  }

  .page-hero {
    padding: 28px 0 10px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(32px, 12vw, 44px);
    line-height: 1.04;
  }

  .section {
    padding: 32px 0;
  }

  .section__header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
  }

  .section__header h2 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .paper,
  .cta-band,
  .note {
    padding: 18px;
  }

  .cat {
    min-height: 78px;
    padding: 14px;
  }

  .card {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }

  .card__title {
    min-height: auto;
    font-size: clamp(24px, 8vw, 29px);
  }

  .card__desc {
    min-height: auto;
  }

  .btn,
  .btn--mini,
  .btn-primary,
  .btn--primary {
    width: 100%;
    text-align: center;
  }

  .field select,
  .field input,
  .field textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .video-card__body h3 {
    font-size: 24px;
  }

  .footer__grid {
    gap: 22px;
    padding: 30px 0;
  }

  .footer a {
    display: flex;
    justify-content: center;
  }
}


.page-hero-modern{
padding:80px 0;
background:
linear-gradient(120deg,#fff7fa,#fff);
}


.hero-modern{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
}


.hero-text{
max-width:600px;
}


.hero-text h1{
font-size:64px;
line-height:1;
}


.hero-text h1 span{
color:#d63c7a;
font-style:italic;
}


.hero-product img{
max-width:430px;
}



.hero-benefits{
display:flex;
gap:25px;
margin-top:40px;
}


.hero-benefits div{
background:white;
padding:20px;
border-radius:20px;
box-shadow:0 15px 40px #0001;
}



.filter-box{

background:white;
padding:25px;
border-radius:25px;

display:flex;
gap:30px;

box-shadow:
0 20px 50px #0001;

margin-bottom:40px;

}



.product-card{

background:white;

border-radius:28px;

overflow:hidden;

box-shadow:
0 20px 60px #0001;

transition:.3s;

}



.product-card:hover{

transform:translateY(-8px);

}



.product-image{

height:330px;

background:#fff7fa;

display:flex;

align-items:center;

justify-content:center;

position:relative;

}


.product-image img{

max-height:250px;

}


.product-image span{

position:absolute;

top:20px;
left:20px;

background:#d63c7a;

color:white;

padding:8px 15px;

border-radius:20px;

}



.product-content{

padding:25px;

}


.product-content h2{

font-size:24px;

}


.btn--primary{

background:#d63c7a;

color:white;

padding:14px 30px;

border-radius:30px;

display:inline-block;

margin-top:20px;

}


/* =================================================
   PELE MAIS PERFEITA
   ESTILO PREMIUM + ANIMAÇÕES
================================================= */


/* HERO COM MOVIMENTO */

.page-hero-modern{

position:relative;
overflow:hidden;

}


.page-hero-modern::before{

content:"";

position:absolute;

width:650px;
height:650px;

right:-220px;
top:-220px;


background:
radial-gradient(
circle,
rgba(214,60,122,.20),
transparent 70%
);


animation:
floatBg 8s infinite ease-in-out;


}



@keyframes floatBg{

0%,100%{
transform:translate(0,0);
}

50%{
transform:translate(-40px,40px);
}

}



/* ENTRADAS */


.hero-text{

animation:
fadeLeft .9s ease forwards;

}



.hero-product{

animation:
fadeUp 1s ease forwards;

}



@keyframes fadeLeft{

from{
opacity:0;
transform:translateX(-50px);
}

to{
opacity:1;
transform:translateX(0);
}

}



@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}





/* IMAGEM FLUTUANTE */


.hero-product img{


animation:

floatingProduct 4s infinite ease-in-out;


filter:

drop-shadow(
0 30px 40px rgba(214,60,122,.25)
);


}



@keyframes floatingProduct{

50%{
transform:translateY(-18px);
}

}






/* BENEFÍCIOS GLASS */


.hero-benefits div{


background:

rgba(255,255,255,.7);


backdrop-filter:

blur(18px);


border:

1px solid rgba(255,255,255,.8);


transition:.35s;


}



.hero-benefits div:hover{


transform:
translateY(-8px);


box-shadow:

0 25px 50px rgba(214,60,122,.18);


}





/* FILTRO */


.filter-box{


background:

rgba(255,255,255,.75);


backdrop-filter:

blur(20px);


border:

1px solid rgba(255,255,255,.8);


border-radius:28px;


box-shadow:

0 25px 60px rgba(0,0,0,.08);


}







/* ==========================
   CARDS DOS PRODUTOS
========================== */


.product-card{


background:

linear-gradient(
145deg,
#ffffff,
#fff5fa
);


border-radius:32px;


overflow:hidden;


position:relative;


border:

1px solid rgba(214,60,122,.12);



box-shadow:

0 25px 60px rgba(120,60,100,.12);



transition:

.35s;



animation:

cardShow .7s ease both;



}



@keyframes cardShow{


from{

opacity:0;
transform:translateY(40px);

}


to{

opacity:1;
transform:translateY(0);

}


}





.product-card::before{


content:"";


position:absolute;


width:220px;
height:220px;


right:-80px;
top:-80px;


background:

radial-gradient(
circle,
rgba(214,60,122,.20),
transparent
);



}






.product-card:hover{


transform:

translateY(-15px)
scale(1.02);



box-shadow:

0 40px 90px rgba(214,60,122,.25);



}





/* AREA IMAGEM */


.product-image{


height:360px;


background:

linear-gradient(
135deg,
#fff,
#fdeef5
);



position:relative;


overflow:hidden;



display:flex;

align-items:center;

justify-content:center;



}



.product-image::after{


content:"";


position:absolute;


width:260px;
height:45px;


bottom:35px;


background:

rgba(214,60,122,.18);


filter:blur(20px);


border-radius:50%;


}




.product-image img{


max-height:260px;


z-index:2;


position:relative;


transition:.5s;


filter:

drop-shadow(
0 25px 25px rgba(0,0,0,.18)
);



}




.product-card:hover 
.product-image img{


transform:

translateY(-15px)
scale(1.08);


}






/* BADGE */


.product-image span{


position:absolute;


top:25px;
left:25px;


z-index:3;


background:

linear-gradient(
135deg,
#d63c7a,
#ef72a3
);



color:white;


padding:

10px 18px;



border-radius:50px;



font-weight:700;



box-shadow:

0 15px 30px rgba(214,60,122,.35);



animation:

pulseBadge 2s infinite;



}





@keyframes pulseBadge{


70%{

box-shadow:

0 0 0 15px transparent;

}


}







/* CONTEUDO */


.product-content{


padding:30px;


}



.product-content h2{


font-size:26px;


line-height:1.15;


}



.product-content p{


color:#777;


line-height:1.6;


}







/* META */


.product-meta{


display:flex;

gap:10px;

margin:

20px 0;


}



.product-meta span{


background:white;


padding:

8px 14px;


border-radius:30px;


font-size:12px;


color:#d63c7a;


border:

1px solid #f3d5e2;


}







/* PREÇO */


.product-price{


font-size:26px;


font-weight:800;


color:#d63c7a;


margin-bottom:15px;


}







/* BOTÃO */


.btn--primary{


position:relative;


overflow:hidden;


background:

linear-gradient(
90deg,
#d63c7a,
#ef72a3
);



box-shadow:

0 15px 35px rgba(214,60,122,.30);


transition:.3s;


}



.btn--primary:hover{


transform:

translateY(-4px);



box-shadow:

0 25px 50px rgba(214,60,122,.40);


}



.btn--primary::before{


content:"";


position:absolute;


top:0;
left:-100%;


width:100%;
height:100%;


background:

linear-gradient(
90deg,
transparent,
rgba(255,255,255,.5),
transparent
);


transition:.5s;


}



.btn--primary:hover::before{


left:100%;


}





/* MENU */


.nav__link{

transition:.3s;

}


.nav__link:hover{

color:#d63c7a;

transform:translateY(-3px);

}





/* MOBILE */


@media(max-width:768px){


.hero-modern{

flex-direction:column;

}



.hero-text h1{

font-size:42px;

}



.hero-benefits{

flex-direction:column;

}



.filter-box{

flex-direction:column;

}



}