* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f6f4ee;
  color: #2f3428;
}

/* HERO */
.hero {
  height: 90vh;
  min-height: 620px;
  background-image: url("images/campo-banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(245, 243, 236, 0.78), rgba(245, 243, 236, 0.72));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  letter-spacing: 3px;
  color: #2d3a24;
}

.hero p {
  margin-top: 16px;
  font-size: 1.2rem;
  color: #4f5d45;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  background: #556b2f;
  color: white;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.btn:hover {
  transform: translateY(-2px);
  background: #465924;
}

.btn-outline {
  background: transparent;
  color: #2d3a24;
  border: 1px solid #7a8d59;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(85, 107, 47, 0.08);
}

/* ABOUT */
.about {
  max-width: 820px;
  margin: 90px auto;
  padding: 0 20px;
  text-align: center;
}

.about-line {
  display: block;
  width: 70px;
  height: 2px;
  background: #a1b189;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #2d3a24;
  margin: 24px 0;
}

.about p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #5e6656;
}

/* LAYOUT */
.container {
  max-width: 1120px;
  margin: auto;
  padding: 0 20px 80px;
}

section {
  margin-bottom: 90px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 34px;
  text-align: center;
  color: #2d3a24;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #e9ece1;
}

.card h3 {
  padding: 18px 18px 8px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #334029;
}

.card p {
  padding: 0 18px 22px;
  text-align: center;
  color: #666d60;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* VIDEO */
.featured-post {
  text-align: center;
}

.video-container {
  max-width: 820px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  background: #000;
}

.insta-cta {
  margin-top: 24px;
}

.insta-cta a {
  display: inline-block;
  text-decoration: none;
  background: #556b2f;
  color: #fff;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease;
}

.insta-cta a:hover {
  transform: translateY(-2px);
  background: #465924;
}

/* HOW TO CONTACT */
.how-to-contact {
  background: #ebe8dc;
  padding: 90px 24px;
  border-radius: 26px;
}

.how-to-contact h2 {
  margin-bottom: 56px;
}

.steps {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  border-radius: 18px;
  padding: 38px 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.step-number {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #556b2f;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.14rem;
  margin-bottom: 12px;
  color: #334029;
}

.step p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #666d60;
}

/* FOOTER */
footer {
  background: #49583a;
  padding: 42px 20px 28px;
  text-align: center;
  color: #f2f0ea;
}

.footer-content p {
  margin: 8px 0;
}

.footer-content a {
  color: #f2f0ea;
  text-decoration: none;
}

.social {
  margin-top: 15px;
}

.social a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #f2f0ea;
}

footer span {
  display: block;
  margin-top: 18px;
  font-size: 0.92rem;
  opacity: 0.9;
}

/* FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #556b2f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 78vh;
    min-height: 520px;
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }

  .hero p {
    font-size: 1rem;
  }

  section h2,
  .about h2 {
    font-size: 1.85rem;
  }

  .card img {
    height: 260px;
  }

  .how-to-contact {
    padding: 70px 18px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .btn,
  .btn-outline,
  .insta-cta a {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.35rem;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.video-grid video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  background: #000;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}