* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f5;
  color: #333;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #1f7a3f, #2ea55f);
  color: #fff;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area img {
  height: 55px;
}

.contact-bar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* NAV */
.nav {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #1f7a3f;
  font-weight: bold;
}

/* HERO */
.hero {
  background: url("hero-fincas.jpg") center/cover no-repeat;
  padding: 120px 20px;
}

.hero-content {
  max-width: 700px;
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 8px;
  color: #fff;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: #1f7a3f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

/* SERVICIOS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 25px;
}

.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border-top: 5px solid #1f7a3f;
}

/* CTA */
.desktop-cta {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(135deg, #1f7a3f, #2ea55f);
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* REVIEWS */
.reviews {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
}

/* FAQ */
.faq h4 {
  margin-top: 15px;
}

/* CONTACTO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.map img {
  width: 100%;
  border-radius: 6px;
}

.contact-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
}

.contact-form button {
  background: #1f7a3f;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 15px;
}

/* BOTÓN LLAMAR */
.call-fixed {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #1f7a3f;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none; /* sin subrayado */
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 999;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-cta {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-flex {
    text-align: center;
    gap: 15px;
  }
}
