*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde: #5a7c65;
  --verde-escuro: #3d5a47;
  --verde-claro: #e8f0ea;
  --terracota: #c4a77d;
  --creme: #faf9f7;
  --creme-escuro: #f3f1ed;
  --texto: #2d3436;
  --texto-claro: #636e72;
  --branco: #ffffff;
  --whatsapp: #25d366;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--texto);
  background: var(--creme);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 90, 71, 0.88) 0%, rgba(45, 52, 54, 0.75) 100%);
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--branco); }

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0 80px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--branco);
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--branco);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--terracota);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 440px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--branco);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp.large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

.hero-photo { position: relative; z-index: 1; }

.photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--terracota);
  border-radius: 200px 200px 120px 120px;
  opacity: 0.5;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 200px 200px 120px 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.photo-placeholder svg {
  opacity: 0.5;
}

/* ==================== SECTION STYLES ==================== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracota);
  margin-bottom: 12px;
}

section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--texto);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

/* ==================== SOBRE ==================== */
.sobre {
  padding: 100px 0;
  background: var(--branco);
}

.sobre-header {
  margin-bottom: 32px;
}
.sobre-header h2 { margin-bottom: 0; }

.sobre-content {
  max-width: 700px;
}

.sobre-destaque {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--verde-escuro);
  margin-bottom: 20px;
  line-height: 1.4;
}

.sobre-content p {
  color: var(--texto-claro);
  font-size: 1.05rem;
}

/* ==================== ATENDIMENTO ==================== */
.atendimento {
  padding: 100px 0;
  background: var(--creme);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--branco);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.servico-icon {
  width: 56px;
  height: 56px;
  background: var(--verde-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.servico-icon svg {
  width: 28px;
  height: 28px;
  color: var(--verde);
}

.servico-card h3 {
  font-size: 1.3rem;
  color: var(--texto);
  margin-bottom: 12px;
}

.servico-card p {
  color: var(--texto-claro);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================== COMO FUNCIONA ==================== */
.como-funciona {
  padding: 100px 0;
  background: var(--verde-escuro);
  color: var(--branco);
}

.como-funciona .section-tag { color: var(--terracota); }
.como-funciona h2 { color: var(--branco); }

.passos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.passo {
  text-align: center;
  position: relative;
}

.passo-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--terracota);
  margin-bottom: 16px;
  line-height: 1;
}

.passo h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--branco);
}

.passo p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ==================== DEPOIMENTOS ==================== */
.depoimentos {
  padding: 100px 0;
  background: var(--creme-escuro);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--branco);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto);
}

.review-meta {
  font-size: 0.8rem;
  color: var(--texto-claro);
}

.review-stars {
  color: var(--terracota);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--texto);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==================== LOCALIZAÇÃO ==================== */
.localizacao {
  padding: 100px 0;
  background: var(--branco);
}

.locais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.local-card {
  display: block;
  background: var(--creme);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.local-card:hover {
  border-color: var(--verde);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.local-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(90, 124, 101, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.local-icon svg {
  width: 24px;
  height: 24px;
  color: var(--verde);
}

.local-card h4 {
  font-size: 1.2rem;
  color: var(--texto);
  margin-bottom: 8px;
}

.local-card p {
  font-size: 0.9rem;
  color: var(--texto-claro);
  margin-bottom: 12px;
}

.local-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--verde);
  transition: color 0.2s;
}
.local-card:hover .local-link { color: var(--verde-escuro); }

.local-card.destaque {
  background: var(--verde-claro);
}
.local-card.destaque h4 { color: var(--verde-escuro); }
.local-card.destaque .local-icon { background: rgba(61, 90, 71, 0.15); }

.local-card.online {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  color: var(--branco);
}
.local-card.online h4,
.local-card.online p { color: var(--branco); }
.local-card.online p { opacity: 0.85; margin-bottom: 0; }
.local-card.online .local-icon { background: rgba(255, 255, 255, 0.15); }
.local-card.online .local-icon svg { color: var(--branco); }

/* ==================== GALERIA ==================== */
.galeria {
  padding: 100px 0;
  background: var(--creme);
}

.galeria-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}

.galeria-item {
  border-radius: var(--radius);
  overflow: hidden;
}

.galeria-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--verde-claro) 0%, var(--creme-escuro) 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px dashed var(--verde);
  border-radius: var(--radius);
}
.galeria-placeholder svg { opacity: 0.5; }

.galeria-item.large .galeria-placeholder {
  height: 100%;
  min-height: 280px;
}

/* ==================== CONTATO ==================== */
.contato {
  padding: 100px 0;
  background: var(--branco);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contato-info h2 {
  margin-bottom: 16px;
}

.contato-info p {
  color: var(--texto-claro);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--whatsapp);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--whatsapp);
  transition: all 0.3s ease;
}
.btn-whatsapp-outline:hover {
  background: var(--whatsapp);
  color: var(--branco);
}

.contato-form {
  background: var(--creme);
  padding: 40px;
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--creme-escuro);
  border-radius: var(--radius-sm);
  background: var(--branco);
  color: var(--texto);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--verde);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--texto-claro);
  opacity: 0.7;
}

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

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--verde);
  color: var(--branco);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: var(--verde-escuro);
  transform: translateY(-2px);
}

/* ==================== CTA ==================== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  text-align: center;
}

.cta h2 {
  color: var(--branco);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta .btn-whatsapp {
  background: var(--branco);
  color: var(--verde-escuro);
  box-shadow: var(--shadow-lg);
}
.cta .btn-whatsapp:hover {
  background: var(--creme);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--texto);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-content {
  margin-bottom: 32px;
}

.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
}

.footer-content p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-content a {
  color: var(--terracota);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-content a:hover { color: var(--branco); }

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .nav-links a:not(:last-child) { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-photo { order: -1; }
  .photo-frame { max-width: 300px; margin: 0 auto; }

  .servicos-grid { grid-template-columns: 1fr; }
  .passos { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .locais-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item.large .galeria-placeholder { min-height: 200px; }

  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .contato-info { text-align: center; }
}

@media (max-width: 600px) {
  section h2 { margin-bottom: 36px; }

  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-grid { padding: 20px 0 40px; }

  .sobre, .atendimento, .como-funciona,
  .depoimentos, .localizacao, .galeria, .contato, .cta {
    padding: 70px 0;
  }

  .passos { grid-template-columns: 1fr; gap: 40px; }
  .locais-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contato-form { padding: 28px; }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* ==================== ANIMATIONS ==================== */
@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .hero-photo,
  .servico-card,
  .passo,
  .review-card,
  .local-card {
    animation: fadeUp 0.6s ease-out backwards;
  }

  .hero-content { animation-delay: 0.1s; }
  .hero-photo { animation-delay: 0.2s; }

  .servico-card:nth-child(1) { animation-delay: 0.1s; }
  .servico-card:nth-child(2) { animation-delay: 0.2s; }
  .servico-card:nth-child(3) { animation-delay: 0.3s; }

  .passo:nth-child(1) { animation-delay: 0.1s; }
  .passo:nth-child(2) { animation-delay: 0.2s; }
  .passo:nth-child(3) { animation-delay: 0.3s; }
  .passo:nth-child(4) { animation-delay: 0.4s; }

  .review-card:nth-child(1) { animation-delay: 0.1s; }
  .review-card:nth-child(2) { animation-delay: 0.2s; }
  .review-card:nth-child(3) { animation-delay: 0.3s; }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
