:root {
  /* Paleta Areia/Creme Premium - We Plan Life */
  --bg: #fdfbf7;
  --bg-2: #f2ede9;
  --bg-dark: #2c2420;
  
  --text: #4a3b32;
  --text-light: #fdfbf7;
  --muted: #8c766a;
  
  --card: #ffffff;
  --card-border: #e6ddd8;
  
  /* Acentos */
  --accent: #d4a373;
  --accent-hover: #c59260;
  --accent-light: #faeadd;
  
  /* Inputs */
  --input-bg: #f9f6f4;
  --input-border: #e3dad5;
  --focus-ring: rgba(212, 163, 115, 0.25);
  
  /* Estados */
  --success: #6b9080;
  --danger: #d9534f;
  
  /* Layout */
  --container: 1140px;
  --header-height: 80px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

/* --- Components --- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  background: var(--text);
  color: var(--text-light);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(74, 59, 50, 0.15);
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.3);
}
.btn.outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
  box-shadow: none;
}
.btn.outline:hover {
  background: var(--text);
  color: var(--text-light);
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.section-title p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav ul {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.nav a:hover, .nav a.active {
  color: var(--accent);
}
.header-cta {
  display: block;
}
@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
}

/* --- Hero --- */
.hero {
  padding: 315px 0 275px; /* Increased by another 100px total (265->315, 225->275) */
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--text);
}
.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* --- Steps / Process --- */
.process {
  padding: 140px 0; /* Increased from 100px */
  background: #fff;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--bg);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}
.step-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.step-card p {
  color: var(--muted);
  font-size: 16px;
}

/* --- About/Team --- */
.about {
  padding: 140px 0; /* Increased from 100px */
  background: var(--bg-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
.about-content p {
  margin-bottom: 24px;
  color: var(--muted);
}
.about-image {
  background: #ccc; /* Placeholder */
  border-radius: 24px;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
}

/* New class for full image visibility */
.about-photo-full {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 40px rgba(74, 59, 50, 0.05);
}

/* --- Contact Section (Embedded) --- */
.contact-section {
  padding: 140px 0; /* Increased from 100px */
  background: var(--bg);
}
/* Reusing contact form styles, tailored for the section */
.contact-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 40px rgba(74, 59, 50, 0.04);
  padding: 48px;
}

/* Mobile */
@media (max-width: 900px) {
  .hero h1 { font-size: 40px; }
  .steps-grid, .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 300px; order: -1; }
  /* Ensure photo comes first on mobile too if using new class */
  .about-photo-full { order: -1; margin-bottom: 32px; }
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 64px 0 32px;
  text-align: center;
}
.footer p { color: rgba(253, 251, 247, 0.6); }

.footer-links {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: rgba(253, 251, 247, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
