/* --- VARIAVEIS E ESTILOS GLOBAIS --- */
:root {
  --rosa: #e6a9a9;
  --rosa-escuro: #d68787;
  --bege: #fdfaf8;
  --bege-claro: #fff9f6;
  --preto: #333333;
  --cinza: #6b6b6b;
  --branco: #ffffff;
  --serif-font: 'Lora', serif;
  --sans-font: 'Inter', Arial, sans-serif;
  --border-radius: 12px;
  --shadow: 0 8px 24px rgba(214, 135, 135, 0.08);
  --shadow-hover: 0 10px 30px rgba(214, 135, 135, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans-font);
  background: var(--bege);
  color: var(--preto);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--serif-font);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 42px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 1rem;
  color: var(--cinza);
}
p:last-child { margin-bottom: 0; }

a {
  color: var(--rosa-escuro);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--preto); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

main { display: block; }

/* --- BOTÕES E LINKS --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rosa); color: var(--branco); }
.btn-primary:hover { background: var(--rosa-escuro); box-shadow: var(--shadow-hover); }
.btn-outline { border-color: var(--rosa); color: var(--rosa); background: transparent; }
.btn-outline:hover { background: var(--rosa); color: var(--branco); }
.btn-contrast { background: var(--preto); color: var(--branco); }
.btn-contrast:hover { background: #1a1a1a; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.link { color: var(--rosa-escuro); font-weight: 700; text-decoration: none; }
.link:hover { text-decoration: underline; }

/* --- HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--branco);
  padding: 15px 0;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}
header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 10px 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo a { display: flex; align-items: center; }
header .logo img { height: 50px; transition: height 0.3s ease; }
header.scrolled .logo img { height: 45px; }
nav ul { list-style: none; display: flex; gap: 25px; align-items: center; }
nav a { color: var(--preto); font-weight: 600; font-size: 15px; }
nav a:hover { color: var(--rosa-escuro); }
.nav-btn {
  padding: 8px 18px;
  font-size: 14px;
}

/* --- SEÇÕES GERAIS --- */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-header h2 { margin-bottom: 12px; }
.center { text-align: center; margin-top: 40px; }

/* --- HERO SECTION --- */
.hero {
  background: var(--bege-claro);
  padding: 60px 0;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-badge {
  display: inline-block;
  background: var(--rosa);
  color: var(--branco);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}
.hero h1 { margin-bottom: 16px; }
.hero p { max-width: 520px; margin-bottom: 24px; font-size: 18px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* --- HOME ABOUT --- */
.home-about { background: var(--branco); }
.about-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: center;
  gap: 60px;
}
.about-text h2 { margin-bottom: 16px; }
.about-card {
  background: var(--bege-claro);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
  border: 1px solid #f0e0e0;
}
.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid var(--branco);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.founder-title { font-weight: 600; color: var(--rosa-escuro); }

/* --- CARDS (SERVICES & PROCESS) --- */
.cards-grid, .steps-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.card, .step {
  background: var(--branco);
  border: 1px solid #f0e0e0;
  border-radius: var(--border-radius);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover, .step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.card-icon { margin-bottom: 12px; }
.card-icon img { height: 40px; width: 40px; }
.card h3 { margin-bottom: 8px; }

/* --- PROCESS --- */
.process { background: var(--bege-claro); }
.step { position: relative; }
.step-num {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--rosa);
  color: var(--branco);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  font-family: var(--serif-font);
  border: 4px solid var(--bege-claro);
}
.step h4 { margin-top: 8px; margin-bottom: 8px; font-family: var(--sans-font); font-weight: 700; }

/* --- CTA BANNER --- */
.cta-banner {
  padding: 60px 0;
  background: var(--rosa);
  color: var(--branco);
  text-align: center;
}
.cta-banner h2 { color: var(--branco); margin-bottom: 8px; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto 24px; }

/* --- PÁGINAS INTERNAS (SOBRE, SERVIÇOS, CONTATO) --- */
.page-header {
  background: var(--bege-claro);
  text-align: center;
  padding: 60px 0;
}
.page-header h1 { margin-bottom: 8px; }
.content-page { padding: 60px 0; }
.content-container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1000px;
}
.content-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.services-list .service-item {
    background: #fff;
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid #f0e0e0;
    margin-bottom: 20px;
}
.services-list .service-item:last-child { margin-bottom: 0; }
.services-list h3 { margin-bottom: 8px; }

/* --- FORMULÁRIOS --- */
.form-container { max-width: 720px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0d0d0;
  border-radius: 8px;
  background: var(--branco);
  font-family: var(--sans-font);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--rosa);
  box-shadow: 0 0 0 3px rgba(230, 169, 169, 0.3);
}
.contact-form button { width: 100%; padding: 15px; font-size: 16px; }
.honeypot { display: none; }

/* --- FOOTER --- */
footer {
  background: var(--branco);
  padding: 60px 0 0;
  border-top: 1px solid #eee;
  color: var(--cinza);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { height: 45px; margin-bottom: 16px; }
.footer-col h4 { margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--cinza); font-weight: 600; }
.footer-col a:hover { color: var(--rosa-escuro); }
.footer-bottom {
  border-top: 1px solid #eee;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 980px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  section { padding: 60px 0; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; margin-bottom: 20px; }
  .hero-image img { margin: 0 auto; }
  
  .about-grid { grid-template-columns: 1fr; }
  .about-card { order: -1; margin-bottom: 20px; }
  
  .cards-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .content-container { grid-template-columns: 1fr; }
  .content-image { display: none; } /* Oculta imagem em telas menores para focar no texto */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin: 0 auto 16px; }
}

@media (max-width: 560px) {
  nav ul {
    /* (Melhoria futura: implementar um menu hamburguer aqui) */
    display: none; 
  }
  .cards-grid, .steps-grid { grid-template-columns: 1fr; }
  .step-num { left: 12px; top: 12px; }
  .step { padding-left: 24px; padding-top: 24px; }
}