* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #5f8d78;
  --secondary: #3c5a4b;
  --accent: #d4a373;
  --dark: #2f4a3f;
  --light: #ffffff;
  --soft: #eef4f1;
}

body {
  font-family: 'Lato', sans-serif;
  background: #f7faf8;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
 box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand h1 {
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: #777;
}


.brand img {
  width: 42px;
}

.brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.brand span {
  font-weight: 300;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  line-height: 1; /* importante */
}

.btn-outline {
  border: 1px solid var(--primary);
  padding: 7px 18px;
  border-radius: 22px;
  color: var(--primary);
  font-weight: 600;
  background: rgba(95,141,120,0.08);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* HERO */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05), transparent 40%),
    linear-gradient(rgba(60,90,75,0.85), rgba(60,90,75,0.85)),
    url("https://images.unsplash.com/photo-1527689368864-3a821dbccc34");
  background-size: cover;
}

.hero-content {
  max-width: 750px;
  margin: auto;
}

.badge {
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 18px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section.light {
  background: var(--light);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about img {
  max-width: 420px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

.card {
  background: var(--soft);
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
}

.card i {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* CONTACT */
.contact {
  max-width: 500px;
  margin: auto;
  text-align: center;
}

.contact ul {
  list-style: none;
  margin-top: 25px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: white;
  padding: 50px 0 25px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social a {
  color: white;
  font-size: 1.4rem;
  margin-right: 16px;
}

/* CTA FOOTER */
.footer-cta {
  margin-top: 10px;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  animation: pulseSoft 3.5s ease-in-out infinite;
}

/* PULSE */
@keyframes pulseSoft {
  0% { box-shadow: 0 0 0 0 rgba(212,163,115,0.45); }
  70% { box-shadow: 0 0 0 18px rgba(212,163,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,163,115,0); }
}

/* STICKY MOBILE */
@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }

  body {
    padding-bottom: 90px;
  }
}

.copy {
  text-align: center;
  margin-top: 25px;
  font-size: 0.85rem;
  opacity: 0.8;
}
