@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ==========================
   Paleta / Variáveis
   ========================== */
:root {
  --rose-pale: #FADADD;
  --rose-mid:  #E88E9E;
  --gold-soft: #DABF8A;
  --text-900:  #333;
  --bg:        #fff;
  --card-bg:   #ffbcc98a;
  --radius:    14px;
  --max-w:     1150px;
}

/* ==========================
   Base / Reset
   ========================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-900);
  background: var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.sobre h2{
  margin:0 0 8px
}

.sobre p {
  color:#5b5b5b;
  margin-top:6px
}

.sobre aside {
  background:linear-gradient(180deg,var(--rose-pale),#ffffff00);
  padding:18px;
  border-radius:12px
}

.sobre aside p {
  margin:0;
  color:#5b5b5b;
  font-size:0.95rem
}

.sobre aside div {
  margin-top:30px
}

.info {
  font-size:0.92rem;
  color:#6b6b6b
}


#servicos h3{
  margin:0 0 12px
}

.servicos-info {
  color:#5b5b5b;
  margin-bottom:18px
}

.depoimento h3{
  margin:0 0 12px
}

#agendar h3{
  margin:0 0 12px
}

.card-agendar {
  color:#5b5b5b;
  margin-top:6px
}
/* ==========================
   Header / Navegação
   ========================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
}

.logo .mark { width: 44px; height: 44px; }

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
}

nav a {
  font-size: 0.95rem;
  padding: 8px 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-nome{
  font-size:1.05rem
}
.nav-subnome {
  font-size:0.78rem;
  color:#7a7a7a;
  margin-top:2px
}



nav a:hover { background: rgba(232,142,158,0.1); }

.cta {
  display: inline-flex;
  align-items: center;
  background: var(--rose-mid);
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(232,142,158,0.15);
}

/* ==========================
   Hero Section
   ========================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 36px;
  align-items: center;
  padding: 56px 0 36px;
}

.hero-left h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 14px;
  line-height: 1.1;
  font-family: "Inter", sans-serif;
}

.hero-left p {
  color: #5b5b5b;
  margin-bottom: 22px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 100%;
  background-color: transparent;
  border: none;
  width: 3rem;
  height: auto;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
}

.btn-primary {
  background: var(--rose-mid);
  color: #fff;
}

.btn-ghost {
  background: white;
  border: 1px solid rgba(51,51,51,0.08);
}

.hero-right {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(20,20,20,0.06);
}

/* ==========================
   Seções Gerais
   ========================== */
section { padding: 46px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullet .dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--rose-pale);
  border: 1px solid rgba(0,0,0,0.03);
}

/* ==========================
   Serviços
   ========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.card {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.02);
}

.card h4 { margin-bottom: 8px; font-weight: 600; }
.card p { color: #6b6b6b; font-size: 0.95rem; }

/* ==========================
   Depoimentos / Agendamento
   ========================== */
.testimonials {
  background: linear-gradient(180deg, rgba(250,218,221,0.3), rgba(255,255,255,0.5));
  border-radius: 12px;
  padding: 18px;
}

.testimonial {
  margin-bottom: 12px;
  font-style: italic;
  color: #4d4d4d;
}

.book {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, var(--rose-pale), #fff);
  padding: 18px;
  border-radius: 12px;
}

.book .info { max-width: 70%; }

.map-embed {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  border: 0;
}

/* ==========================
   Contato
   ========================== */
.contact h3 {
  margin:0 0 12px
}
  
.contact-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 260px;
}

.map-embed {
  flex: 1;
  min-width: 320px;
  height: 300px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-info p {
  margin: 6px 0;
  color: #5b5b5b;
  line-height: 1.5;
}

.contact-info a {
  color: var(--rose-mid);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ==========================
   Footer
   ========================== */
.footer {
  background: linear-gradient(90deg, #ffdde1, #ffc4cc);
  color: #5b5b5b;
  padding: 32px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer a {
  color: #4a4a4a;
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer a:hover {
  text-decoration: underline;
  color: #b64b64;
}

.footer-copy {
  font-size: 0.9rem;
  color: #6b6b6b;
  text-align: right;
}


/* ==========================
   Responsivo
   ========================== */
@media (max-width: 980px) {
  .btn-whatsapp{
    display: none;
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right { order: -1; }
  .hero-ctas {
    padding-left: 5%;
  }
  .about-grid { grid-template-columns: 1fr; }
  .container { width: 94%; }

  .contact-flex {
    flex-direction: column;
  }

  .map-embed {
    width: 100%;
    height: 260px;
  }
}

@media (max-width: 520px) {
  nav ul { display: none; }
  .hero { padding: 34px 0; }
  .book { flex-direction: column; align-items: flex-start; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}

.backgroundImage{
  background-color: #fcdee2;
  background-image: url(/assets/flores.svg);
}
