:root {
  --primary: #1bb34b;
  --primary-dark: #11913a;
  --secondary: #003915;
  --light: #f7f9f8;
  --muted: #6f7b76;
  --dark: #1c1f1d;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-family: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background-color: #fff;
  line-height: 1.7;
  padding-top: 90px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

.navbar {
  padding: 1.25rem 0;
  background-color: #fff;
}

.navbar-brand img,
.navbar-brand .navbar-logo {
  height: 44px;
  width: auto;
  display: block;
}

.navbar .nav-link {
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--primary);
}

.navbar .nav-social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .nav-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
}

.navbar .nav-icon-link img {
  display: block;
  max-width: 28px;
  max-height: 28px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(27, 179, 75, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.25)),
    url("../img/bg-hero.jpg") center/cover no-repeat;
  color: #fff;
}

.hero .hero-content {
  max-width: 560px;
  padding: 5rem 0;
}

.hero span {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title span {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.section-title h2 {
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-title p {
  margin: 0.5rem auto 0;
  color: var(--muted);
}

.section-padding {
  padding: 10rem 0;
}

.plans-section {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
    url("../img/bg-planes.jpg") center/cover no-repeat;
  color: #fff;
  padding: 20vh 0;
}

.plans-section .section-title h2,
.plans-section .section-title span,
.plans-section .section-title p {
  color: #fff;
}

.plans-grid .card {
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plans-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.plans-grid .card img {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}

.plans-grid .card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.plans-grid .card p {
  color: var(--muted);
  margin: 0;
}

.methodology {
  background-color: #fdfdfd;
}

.methodology .feature-card {
  border: none;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  background-color: #fff;
  box-shadow: var(--shadow);
  height: 100%;
}

.methodology .feature-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
}

.methodology .feature-card h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.methodology .feature-card p {
  color: var(--muted);
}

.pest-control {
  background-color: #f3f7f4;
}

.pest-control .pest-card {
  border: none;
  border-radius: 1rem;
  padding: 1.75rem;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.25s ease;
  height: 100%;
}

.pest-control .pest-card:hover {
  transform: translateY(-6px);
}

.pest-control .pest-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.pest-control .pest-card h4 {
  font-size: 0.95rem;
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.pest-control .pest-card.green {
  background-color: var(--primary);
  color: #fff;
}

.pest-control .pest-card.green p {
  color: rgba(255, 255, 255, 0.85);
}

.pest-control .pest-card.green img {
  filter: brightness(0) invert(1);
}

.cta-section {
  background-color: var(--primary);
  color: #fff;
  position: relative;
}

.cta-section .section-title span,
.cta-section .section-title h2,
.cta-section .section-title p {
  color: #fff;
}

.cta-section .card {
  border: none;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cta-section .form-label {
  font-weight: 600;
  color: var(--dark);
}

.cta-section .form-control,
.cta-section .form-select {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.85rem 1rem;
}

.cta-section .btn {
  margin-top: 1rem;
  padding: 0.85rem 2.5rem;
}

.footer {
  background-color: #333333;
  color: #fff;
  padding: 3rem 0;
}

.footer a {
  color: #fff;
  font-weight: 600;
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo img {
  height: 60px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.social-links img {
  display: block;
  width: 24px;
  height: 24px;
}

.footer h4{
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

.whatsapp-link img {
  width: 32px;
  height: 32px;
}

@media (max-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar .nav-link {
    padding: 0.5rem 0;
  }

  .navbar .nav-social-links {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero .hero-content {
    padding: 0;
  }

  .plans-grid .card,
  .methodology .feature-card {
    margin-bottom: 1.5rem;
  }

  .cta-section .card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 80px;
  }

  .navbar-brand img,
  .navbar-brand .navbar-logo {
    height: 36px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }

  .section-padding {
    padding: 4rem 0;
  }
}


#flotante{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
