:root{
  /* Base */
  --bg: #f6efe8;
  --card: #fffaf6;
  --text: #2f2119;
  --muted: #6f5647;

  /* Tons principais */
  --brand: #a45a2a;
  --brand-2: #7a3f1f;
  --brand-3: #d08a57;

  /* UI */
  --border: rgba(47, 33, 25, 0.12);
  --shadow: 0 18px 50px rgba(47, 33, 25, 0.10);
  --radius: 22px;
  --max: 1080px;

  /* Feedback */
  --danger: #c75a5a;
  --ok: #3f8a63;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
  background:
    radial-gradient(900px 450px at 15% 0%, rgba(164,90,42,.20), transparent 55%),
    radial-gradient(900px 450px at 85% 10%, rgba(232,207,168,.35), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 56px;
}

/* =========================
   HEADER / NAV
========================= */
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,250,246,.90);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(47,33,25,.08);
}

.brand{
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo{
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.brandText{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brandTitle{
  font-weight: 1000;
  font-size: 14px;
  color: #2f2119;
}

.brandSub{
  font-size: 12px;
  font-weight: 800;
  color: #5d4638;
  margin-top: 4px;
}

.navlinks{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a{
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: .2s ease;
  font-weight: 700;
  font-size: 14px;
}

.navlinks a:hover{
  background: rgba(255,255,255,.35);
  color: var(--text);
}

.menuBtn{
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 1000;
  cursor: pointer;
}

/* =========================
   UI GERAL
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  color: var(--text);
  cursor: pointer;
  transition: .2s ease;
  font-weight: 800;
  white-space: nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.95);
}

.btn.primary{
  background: linear-gradient(135deg, #a45a2a, #c77b47);
  color: #fffaf6;
  box-shadow: 0 12px 30px rgba(164,90,42,.28);
  border: none;
}

.btn.whats{
  background: #25D366;
  border: none;
  color: #06250f;
  font-weight: 900;
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

/* =========================
   HERO BANNER NOVO
========================= */
.heroBanner{
  position: relative;
  margin-top: 22px;
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246,239,232,.96) 0%, rgba(246,239,232,.88) 38%, rgba(246,239,232,.55) 58%, rgba(246,239,232,.18) 100%),
    linear-gradient(135deg, #f0dfcf, #d8b08c);
  box-shadow: 0 28px 70px rgba(47,33,25,.16);
  border: 1px solid var(--border);
}

.heroOverlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 20% 20%, rgba(164,90,42,.15), transparent 60%),
    radial-gradient(500px 260px at 85% 30%, rgba(255,255,255,.25), transparent 60%);
  pointer-events: none;
}

.heroContent{
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: 10px;
  padding: 42px 42px 110px;
}

.heroText{
  max-width: 560px;
  align-self: center;
}

.heroMini{
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,250,246,.72);
  border: 1px solid rgba(164,90,42,.18);
  color: #7a3f1f;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .2px;
}

.heroBanner h1{
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  color: #7a3f1f;
  max-width: 12ch;
}

.heroBanner p{
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #5e4d42;
  max-width: 48ch;
  font-weight: 600;
}

.heroActions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.heroPhotoWrap{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.heroPhoto{
  width: 100%;
  max-width: 520px;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px 30px 0 0;
  filter: drop-shadow(0 18px 38px rgba(47,33,25,.14));
}

.heroMenu{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 20px;
  background: linear-gradient(135deg, #a45a2a, #7a3f1f);
}

.heroMenu a{
  color: #fff;
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .2s ease;
}

.heroMenu a:hover{
  background: rgba(255,255,255,.14);
}

.heroBanner .btn{
  background: rgba(255,255,255,.7);
  color: var(--text);
}

.heroBanner .btn:hover{
  background: rgba(255,255,255,.95);
}

.heroBanner .btn.primary{
  background: linear-gradient(135deg, #a45a2a, #c77b47);
  color: #fffaf6;
  border: none;
  box-shadow: 0 12px 30px rgba(164,90,42,.22);
}

.heroBanner .btn.whats{
  background: #25D366;
  color: #06250f;
  border: none;
}

/* =========================
   INFOS ABAIXO DO BANNER
========================= */
.heroInfoGrid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.infoCard{
  padding: 24px;
}

.kicker{
  color: var(--muted);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #c77b47;
  border-radius: 999px;
  background: #f3e3d6;
  font-weight: 800;
  margin-bottom: 14px;
}

.sub{
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 62ch;
}

.bullets{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tick{
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: #f3e3d6;
  border: 1px solid #c77b47;
  margin-top: 2px;
  flex: 0 0 18px;
}

/* =========================
   CONTEÚDO PRINCIPAL
========================= */
.hero{
  margin-top: 18px;
  display: block;
}

.heroRight{
  padding: 20px;
}

.profile{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  margin-bottom: 14px;
}

.profilePhoto{
  width: 200px;
  height: 200px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid #c77b47;
  background: rgba(232,207,168,.22);
}

.profileInfo{
  flex: 1;
}

.profileName{
  margin: 0;
  font-weight: 1000;
  letter-spacing: -.2px;
  font-size: 16px;
}

.profileMeta{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.miniTitle{
  font-weight: 1000;
  margin: 0 0 8px;
  font-size: 18px;
}

.miniText{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.grid3{
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.tile{
  padding: 18px;
}

.tile h3{
  margin: 0 0 6px;
  font-size: 16px;
}

.tile p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.section{
  margin-top: 18px;
  padding: 22px;
}

.sectionTitle{
  margin: 0 0 10px;
  font-size: 20px;
}

.sectionText{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* =========================
   GALERIA
========================= */
.photoGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.photoGrid img{
  width: 100%;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: rgba(232,207,168,.14);
}

/* =========================
   BANNER INTERNO
========================= */
.banner{
  margin: 30px 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(47,33,25,.18);
}

.banner img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: opacity .6s ease;
}

/* =========================
   SPOTIFY E REDES
========================= */
.spotifyBox,
.socialBox{
  margin-top: 16px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
}

.spotifyTitle,
.socialTitle{
  margin: 0 0 10px;
  font-weight: 1000;
  letter-spacing: -.2px;
}

.spotifyHint{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.socialLinks{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.socialLinks a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ead8ca;
  background: #f3e3d6;
  font-weight: 900;
  transition: .2s ease;
}

.socialLinks a:hover{
  transform: translateY(-2px);
  background: #a45a2a;
  color: #fff;
}

.socialLinks img{
  width: 50px;
  height: 50px;
}

/* =========================
   FORMULÁRIO
========================= */
form{
  margin-top: 14px;
}

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

label{
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 6px;
  font-weight: 800;
}

input,
textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  color: var(--text);
  outline: none;
  font-weight: 700;
}

textarea{
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus{
  border-color: #c77b47;
  box-shadow: 0 0 0 6px rgba(199,123,71,.20);
}

.formActions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  align-items: center;
}

.note{
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 14px;
  font-weight: 600;
}

.msg{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
}

.msg.ok{
  color: var(--ok);
}

.msg.err{
  color: var(--danger);
}

/* =========================
   AGENDAMENTO ESCURO
========================= */
#agendar{
  background: linear-gradient(135deg, #8f4d26, #6f391c);
  color: #fff;
  border: none;
}

#agendar .sectionTitle,
#agendar .sectionText,
#agendar label,
#agendar .note{
  color: #ffffff;
}

#agendar input,
#agendar textarea{
  background: #ffffff;
  color: #000000;
  border: none;
}

#agendar input:focus,
#agendar textarea:focus{
  box-shadow: 0 0 0 4px rgba(232,207,168,.45);
  border: none;
}

#agendar .btn{
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid #ffffff38;
}

#agendar .btn.primary{
  background: linear-gradient(135deg, #f0dfcf, #e8cfa8);
  color: #2f2119;
  box-shadow: 0 12px 30px rgba(122,63,31,.35);
  border: none;
}

#agendar .msg.ok{
  color: #7CFFA8;
}

#agendar .msg.err{
  color: #FF9AA6;
}

#agendar .note{
  border-top: 1px solid rgba(255,255,255,.18);
}

/* =========================
   FAQ / DETAILS
========================= */
.faq{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

details{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  padding: 14px 16px;
}

summary{
  cursor: pointer;
  font-weight: 1000;
  color: var(--text);
  list-style: none;
}

summary::-webkit-details-marker{
  display: none;
}

details p{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.backRow{
  display: flex;
  gap: 14px;
  margin-top: 20px;
  padding-top: 10px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER
========================= */
.footer {
  margin-top: 30px;
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
}

.footerContent {
  display: flex;
  gap: 30px;
  align-items: stretch; /* importante */
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LOGO */
.footerLeft {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;      /* centraliza verticalmente */
  justify-content: center;  /* centraliza horizontalmente */
}

.footerLogo {
  max-width: 180px;
  height: auto;
  display: block;
}

/* ENDEREÇOS */
.footerRight {
  flex: 2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ajuda a equilibrar com a logo */
}

.footerRight h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.addressItem {
  margin-bottom: 14px;
}

.addressItem:last-child {
  margin-bottom: 0;
}

.addressItem strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.addressItem p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* BASE */
.footerBottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .footerContent {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footerLeft {
    width: 100%;
    min-width: unset;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
  }

  .footerLogo {
    max-width: 150px;
  }

  .footerRight {
    width: 100%;
    min-width: unset;
    justify-content: center;
    align-items: center;
  }
}

.addressLink {
  color: var(--muted);
  text-decoration: none;
  transition: 0.2s;
}

.addressLink:hover {
  color: var(--brand);
  text-decoration: underline;
}

.addressItem:hover .addressLink {
  color: var(--brand);
}

/* =========================
   SPOTIFY EXTRA
========================= */
.spotifyBox{
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}

.spotifyTitle{
  margin: 0 0 12px;
  font-weight: 1000;
  letter-spacing: -0.2px;
  font-size: 16px;
  color: var(--text);
}

.spotifyFrame{
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 16px;
  display: block;
}

.spotifyHint{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* =========================
   BOTÃO FLUTUANTE WHATSAPP
========================= */
/* Botão flutuante WhatsApp */
.floatWpp{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;

  width: 60px;
  height: 60px;

  background: #25D366; /* cor oficial Whats */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Ícone */
.floatWpp img{
  width: 38px;
  height: 38px;
}

/* Hover */
.floatWpp:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Clique (efeito leve) */
.floatWpp:active{
  transform: scale(0.95);
}

@media (max-width: 600px){
  .floatWpp{
    width: 55px;
    height: 55px;
    bottom: 16px;
    right: 16px;
  }

  .floatWpp img{
    width: 38px;
    height: 38px;
  }
}

.floatWpp{
  animation: pulse 2s infinite;
}

@keyframes pulse{
  0%{
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70%{
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 980px){
  .heroContent{
    grid-template-columns: 1fr;
    align-items: center;
    padding: 30px 24px 92px;
    min-height: auto;
  }

  .heroText{
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .heroBanner h1{
    max-width: 100%;
  }

  .heroActions{
    justify-content: center;
  }

  .heroPhotoWrap{
    margin-top: 20px;
  }

  .heroPhoto{
    max-width: 360px;
    height: 420px;
    border-radius: 24px;
  }

  .heroInfoGrid{
    grid-template-columns: 1fr;
  }

  .grid3{
    grid-template-columns: 1fr;
  }

  .heroMenu{
    justify-content: flex-start;
    overflow: auto;
    flex-wrap: nowrap;
    padding: 14px 14px;
  }

  .heroMenu a{
    white-space: nowrap;
  }

  .nav{
    position: static;
    justify-content: center;
    text-align: center;
    padding: 12px 14px;
    flex-wrap: wrap;
  }

  .brand{
    justify-content: center;
    flex: 1 1 auto;
    min-width: 220px;
  }

  .brandText{
    display: none;
  }

  .logo{
    height: 52px;
    max-width: 220px;
  }

  .menuBtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navlinks{
    width: 100%;
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }

  .navlinks a{
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.18);
  }

  .navlinks.open{
    display: flex;
  }

  .profile{
    flex-direction: column;
    text-align: center;
  }

  .profilePhoto{
    width: 180px;
    height: 180px;
  }

  .photoGrid{
    grid-template-columns: 1fr;
  }

  .photoGrid img{
    height: 190px;
  }

  .banner img{
    height: 220px;
  }
}

@media (max-width: 700px){
  .row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .heroBanner{
    min-height: auto;
    border-radius: 26px;
  }

  .heroContent{
    padding: 24px 18px 84px;
  }

  .heroBanner h1{
    font-size: clamp(28px, 8vw, 38px);
  }

  .heroBanner p{
    font-size: 15px;
  }

  .heroPhoto{
    max-width: 290px;
    height: 340px;
  }

  .logo{
    height: 46px;
    max-width: 160px;
  }

  .socialLinks{
    justify-content: center;
  }

  .formActions{
    flex-direction: column;
    align-items: stretch;
  }

  .formActions .btn{
    width: 100%;
  }

  .spotifyBox{
    padding: 14px;
  }

  .spotifyFrame{
    height: 300px;
  }
}


@media (max-width: 520px){
  .logo{
    height: 46px;
    max-width: 160px;
  }
}

@media (max-width: 500px){
  .btn{
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .backRow{
    flex-direction: column;
  }
}

.footerAddresses {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footerAddresses h3 {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 700;
}

.addressItem {
  margin-bottom: 12px;
}

.addressItem strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text);
}

.addressItem p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}