/* Reset Básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #f6f2ec;
  --color-primary: #b58c4d;
  --color-primary-dark: #8c6d3f;
  --color-text: #1c1b1d;
  --color-muted: rgba(28, 27, 29, 0.72);
  --color-card: rgba(255, 255, 255, 0.88);
  --color-border: rgba(28, 27, 29, 0.12);
  --shadow: 0 16px 40px rgba(25, 21, 49, 0.07);
  --radius: 14px;
  --max-width: 1080px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Playfair Display", serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

::selection {
  background: rgba(181, 140, 77, 0.35);
}

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 242, 236, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  text-transform: uppercase;
  width: 5vw;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  font-size: 0.95rem;
  padding: 0.35rem 0.45rem;
  border-radius: 10px;
  transition: background 0.2s ease;
  font-weight: 500;
}

.nav a:hover {
  background: rgba(181, 140, 77, 0.12);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, rgba(181, 140, 77, 1), rgba(140, 109, 63, 1));
  border: none;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(181, 140, 77, 0.35);
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top center, rgba(255,255,255,0.7) 0%, rgba(246,242,236,1) 55%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1.1rem;
  line-height: 1.15;
}

.hero p {
  margin-bottom: 1.8rem;
  color: var(--color-muted);
  max-width: 520px;
}

.hero-image {
  height: 420px;
  border-radius: calc(var(--radius) * 1.2);
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12)),
    url("https://storage.alboom.ninja/sites/5809/albuns/1065641/onde-casar-em-gramado-casamento-dos-sonhos.jpg?t=1663327310") center/cover no-repeat;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

/* Seções */
section {
  padding: 4rem 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.1rem;
  text-align: center;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

section p {
  color: var(--color-muted);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.4rem;
}

.sobre {
  background: rgba(255, 255, 255, 0.75);
}

.servicos .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.card {
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  text-align: center;
}

.card h3 {
  margin-bottom: 0.7rem;
  font-family: var(--font-heading);
}

/* Form */
.agendar .form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

input,
textarea {
  margin-top: 0.6rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(28, 27, 29, 0.14);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(181, 140, 77, 0.8);
  box-shadow: 0 0 0 4px rgba(181, 140, 77, 0.18);
}

.full-width {
  width: 100%;
  margin-top: 1.4rem;
}

.form button {
  margin-top: 1.6rem;
  width: 100%;
  letter-spacing: 0.04em;
}

/* Depoimentos */
.depoimentos {
  background: rgba(255, 255, 255, 0.6);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 1.2rem;
}

blockquote {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: var(--shadow);
  border-left: 4px solid rgba(181, 140, 77, 0.9);
  color: var(--color-muted);
  font-style: italic;
}

blockquote footer {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-text);
  font-style: normal;
}

/* Rodapé */
.site-footer {
  padding: 2.5rem 0 1.5rem;
  background: rgba(25, 21, 49, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-inner h3 {
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  font-weight: 600;
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 320px;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .btn-primary {
    width: 100%;
  }

  .form button {
    max-width: 420px;
  }
}