/* ===================================================
   RESET
=================================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",sans-serif;
  color:#352f32;
  background:
    radial-gradient(circle at top left, rgba(255,220,232,.85) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at bottom right, rgba(247,204,218,.65) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(180deg,#faf6f7 0%,#f3eef0 45%,#faf7f8 100%);
  min-height:100vh;
}

img{
  display:block;
  max-width:100%;
}

a{
  text-decoration:none;
}

/* ===================================================
   CONTAINER
=================================================== */
.site-container{
  width:100%;
  max-width:1240px;
  margin:32px auto;
  padding:0 16px;
}

/* ===================================================
   TOPO
=================================================== */
.topo{
  min-height:82px;
  background:rgba(255,255,255,.92);
  border-radius:26px 26px 0 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 34px;
  box-shadow:0 12px 30px rgba(98,62,77,.06);
  backdrop-filter:blur(8px);
}

.logo{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  font-weight:700;
  color:#2f2a2c;
}

.logo .rosa{
  color:#d8648a;
}

.menu{
  display:flex;
  gap:26px;
  align-items:center;
}

.menu a{
  color:#5e5658;
  font-size:15px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.8px;
  position:relative;
  transition:.3s;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#d8648a;
  transition:.3s;
}

.menu a:hover{
  color:#d8648a;
}

.menu a:hover::after{
  width:100%;
}

.topo-direita{
  display:flex;
  gap:12px;
}

.icone{
  border:none;
  background:transparent;
  font-size:28px;
  color:#666;
  cursor:pointer;
}

.menu-mobile{
  display:none;
}

/* ===================================================
   HERO
=================================================== */
.hero{
  position:relative;
  height:560px;
  overflow:hidden;
  background:#e8d2d8;
}

.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(63,37,46,.58) 0%, rgba(103,66,78,.30) 32%, rgba(255,255,255,0) 65%);
}

.hero-brilho{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0) 60%, rgba(248,202,216,.22) 80%, rgba(236,160,185,.38) 100%);
}

.hero-curva{
  position:absolute;
  left:-8%;
  right:-8%;
  bottom:-110px;
  height:220px;
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.24) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg,#fff5f7 0%, #f8e8ee 100%);
  z-index:2;
}

.hero-conteudo{
  position:absolute;
  top:78px;
  left:52px;
  z-index:4;
  max-width:520px;
}

/* TEXTO BRANCO ALTERADO */
.hero-conteudo h1{
  font-family:"Cormorant Garamond",serif;
  font-size:88px;
  line-height:.88;
  font-weight:700;
  color:#ffffff !important;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:22px;
  text-shadow:
    0 3px 10px rgba(0,0,0,.35),
    0 8px 22px rgba(0,0,0,.25);
}

.hero-conteudo p{
  font-size:24px;
  line-height:1.45;
  color:#ffffff !important;
  font-weight:600;
  max-width:420px;
  margin-bottom:26px;
  text-shadow:
    0 2px 8px rgba(0,0,0,.28),
    0 5px 14px rgba(0,0,0,.20);
}

.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
  height:52px;
  border-radius:999px;
  background:linear-gradient(180deg,#fff8f8 0%,#f7efef 100%);
  color:#c9577f;
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;
  box-shadow:0 14px 30px rgba(84,54,64,.12);
  transition:.3s;
}

.btn-whatsapp:hover{
  transform:translateY(-2px);
}

/* ===================================================
   GALERIA SAPATOS
=================================================== */
.galeria-sapatos{
  position:relative;
  z-index:5;
  margin-top:-14px;
  padding:0 30px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
}

.sapato-item{
  width:172px;
  height:172px;
  border-radius:50%;
  padding:6px;
  background:linear-gradient(180deg,#fff 0%,#f6e8ee 100%);
  box-shadow:0 16px 30px rgba(98,62,77,.10);
}

.sapato-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* ===================================================
   TITULOS GERAIS
=================================================== */
.secao-titulo{
  margin-bottom:28px;
}

.centralizado{
  text-align:center;
}

.secao-titulo h2,
.sobre-texto h2,
.info-local h2{
  font-family:"Cormorant Garamond",serif;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:#342c2f;
  text-shadow:
    0 2px 8px rgba(122,79,95,.10),
    0 1px 0 rgba(255,255,255,.55);
}

.secao-titulo h2{
  font-size:66px;
  line-height:1;
  margin-bottom:8px;
}

.secao-titulo p{
  color:#756d71;
  font-size:15px;
}

/* ===================================================
   PRODUTOS
=================================================== */
.produtos{
  padding:56px 40px 42px;
}

.cards-produtos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.card-produto{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(98,62,77,.08);
}

.card-produto img{
  width:100%;
  height:295px;
  object-fit:cover;
}

.card-produto-info{
  padding:14px;
  text-align:center;
}

.card-produto-info h3{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  font-weight:700;
}

/* ===================================================
   MARCAS
=================================================== */
.marcas{
  padding:20px 40px 54px;
}

.marcas-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}

.marca-card{
  min-height:102px;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 28px rgba(98,62,77,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

.dakota{font-family:"Montserrat";font-size:28px;font-weight:800;}
.mississipi{font-family:"Nunito";font-size:27px;font-weight:800;color:#cf8a2d;}
.modare{font-family:"Poppins";font-size:28px;color:#6b48b0;}
.beirario{font-family:"Montserrat";font-size:24px;font-weight:700;}
.vizzano{font-family:"Playfair Display";font-size:30px;}
.piccadilly{font-family:"Lora";font-size:28px;color:#da4e78;}

/* ===================================================
   SOBRE
=================================================== */
.sobre{
  padding:46px 40px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.sobre-img img{
  width:100%;
  height:330px;
  object-fit:cover;
  border-radius:24px;
}

.sobre-texto h2{
  font-size:62px;
  margin-bottom:18px;
}

.sobre-texto p{
  font-size:17px;
  line-height:1.9;
  color:#6b6467;
  margin-bottom:26px;
}

.frase-destaque{
  color:#d15f84;
  font-family:"Cormorant Garamond",serif;
  font-size:30px;
  font-weight:700;
}

/* ===================================================
   REDES
=================================================== */
.redes{
  padding:18px 40px 52px;
}

.redes-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.rede-card{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  border-radius:24px;
  padding:28px;
  background:#fff;
  box-shadow:0 16px 34px rgba(98,62,77,.08);
}

.rede-icone{
  width:72px;
  height:72px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
}

.instagram .rede-icone{
  background:
  radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.facebook .rede-icone{
  background:#1877f2;
}

.rede-info{
  text-align:center;
}

.rede-info h3{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  font-weight:700;
}

.rede-info span{
  color:#777;
}

/* ===================================================
   LOCAL
=================================================== */
.local{
  padding:44px 40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
  background:linear-gradient(135deg,#f0d4db 0%,#de7c96 55%,#d66088 100%);
  border-radius:0 0 26px 26px;
}

.mapa img{
  width:100%;
  height:275px;
  object-fit:cover;
  border-radius:22px;
}

.info-local h2{
  font-size:60px;
  color:#fff;
  margin-bottom:22px;
}

.info-local ul{
  list-style:none;
  margin-bottom:24px;
}

.info-local li{
  color:#fff;
  font-size:18px;
  margin-bottom:16px;
}

.botoes-local{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-local{
  min-width:160px;
  height:52px;
  border-radius:999px;
  background:#fff;
  color:#cb597f;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* ===================================================
   RESPONSIVO
=================================================== */
@media(max-width:920px){

  .cards-produtos,
  .marcas-grid,
  .sobre,
  .redes-grid,
  .local{
    grid-template-columns:1fr;
  }

  .hero-conteudo h1{
    font-size:64px;
  }

}

@media(max-width:640px){

  .menu{
    display:none;
  }

  .menu-mobile{
    display:block;
  }

  .menu.ativo{
    display:flex;
    flex-direction:column;
    width:100%;
  }

  .hero{
    height:420px;
  }

  .hero-conteudo{
    left:22px;
    top:42px;
  }

  .hero-conteudo h1{
    font-size:50px;
  }

  .hero-conteudo p{
    font-size:17px;
  }

  .sapato-item{
    width:118px;
    height:118px;
  }

  .secao-titulo h2,
  .sobre-texto h2,
  .info-local h2{
    font-size:42px;
  }

}