:root {
  --bg: #ffffff;
  --bg-light: #ffffff;
  --primary: #d77a7a;
  --primary-dark: #b45c5c;
  --text: #2b2525;
  --muted: #7a6c6c;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Reset básico */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Utilitários */
.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--muted);
}

/* Header / Navegação */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9); /* branco translúcido */
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* sombra bem suave */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;       /* padding menor pra faixa não ficar alta demais */
  min-height: 72px;        /* altura da faixa do menu */
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 72px;        /* mesma altura da faixa do menu */
  overflow: visible;   /* deixa a imagem passar dessa altura */
}

.logo img {
  height: 80px;       /* aqui você coloca o tamanho que quer pro logo */
  width: auto;
  display: block;
}

/* Menu */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text);
}

/* Botão hamburguer (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(215, 122, 122, 0.08);
  color: var(--primary-dark);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 480px;
}

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

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: rgba(215, 122, 122, 0.4);
}

.btn-outline:hover {
  background: rgba(215, 122, 122, 0.06);
}

/* Imagem hero */
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* Layout 2 colunas */
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 32px;
  align-items: flex-start;
}

.destaque-box {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #ffecec);
  box-shadow: var(--shadow-soft);
}

/* Lista */
.lista {
  list-style: none;
  padding-left: 0;
}

.lista li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.lista li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--primary);
}

/* Cards de serviços */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transform: translateY(0px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Contato */
.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.contato-info {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.contato-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contato-info p,
.contato-info a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

/* Formulário */
.contato-form {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 0.9rem;
}

.field input,
.field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e2d8d8;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(215, 122, 122, 0.4);
  border-color: transparent;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.checkbox input {
  margin-top: 3px;
}

.btn-full {
  width: 100%;
}

.form-feedback {
  font-size: 0.85rem;
  color: var(--primary-dark);
}

/* Rodapé */
.footer {
  padding: 24px 0;
  background: #1f1414;
  color: #f7e9e9;
  font-size: 0.85rem;
}

.footer-inner {
  text-align: center;
}

/* Animações de entrada (scroll) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-inner,
  .two-columns,
  .cards-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px 16px;
    border-radius: 16px;
    background: rgba(253, 249, 246, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transform-origin: top right;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-list.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }
}
