/* ==========================================================================
   HOJA DE ESTILOS NATIVA - 
   ========================================================================== */

/* Variables globales de color y fuentes */
:root {
  --green-main: #417d38;        /* Verde primario de la franja y logos */
  --green-btn: #53a33f;         /* Verde del botón de WhatsApp */
  --green-dark-hero: #0d2818;   /* Verde muy oscuro para el overlay */
  --text-dark: #222222;
  --text-light: #ffffff;
  --font-family: 'Montserrat', sans-serif;
  --max-width: 1240px;
}

/* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
}

body p,
body li,
body a,
body button,
body label,
body input,
body textarea,
body select {
  font-size: 18px !important;
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* 1. Header */
.site-header {
  background-color: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 55px;
  width: auto;
  display: block;
}

/* Navegación */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 18px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 14px !important;
  letter-spacing: 0;
  padding-bottom: 5px;
  transition: color 0.2s ease;
}

.nav-link.active {
  border-bottom: 3px solid var(--green-main);
}

.nav-link:hover {
  color: var(--green-main);
}

/* Botón Hamburguesa Móvil */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
}

/* Redes Sociales */
.social-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.site-header .social-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  border-radius: 50%;
  background: var(--green-main);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-header .social-icon-svg:hover {
  background: #2f642a;
  transform: translateY(-1px);
}

.site-header .social-icon-svg svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--green-main);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: bold;
}

/* 2. Hero Section */
.hero-section {
  position: relative;
  background-image: url('../imagenes/fumigacion-y-control-deinsectos-en-medellin-inicio.webp');
  background-size: cover;
  background-position: center right;
  min-height: 550px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 40, 24, 0.92) 0%, rgba(13, 40, 24, 0.75) 45%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-text-content {
  max-width: 580px;
  color: var(--text-light);
}

.hero-title {
  font-size: clamp(1rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  white-space: nowrap;
}

.contact-hero-title {
  font-size: clamp(1rem, 4.5vw, 2.25rem);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-whatsapp-hero {
  display: inline-block;
  background-color: var(--green-btn);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-whatsapp-hero:hover {
  background-color: #458a33;
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px 0 12px;
  border-radius: 24px;
  background: #25d366;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 0.85rem !important;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1da851;
  color: #ffffff;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

/* 3. Servicios */
.services-section {
  background-color: #f1f7f5;
  padding: 60px 0 64px;
}

.services-section-title {
  color: var(--green-main);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.featured-services-section {
  background-color: var(--green-main);
  color: var(--text-light);
  padding: 40px 0 50px 0;
}

.featured-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 35px;
}

.featured-services-section .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1050px;
}

.featured-services-section .service-card {
  min-height: 250px;
  padding: 26px 20px;
  background: var(--green-main);
  color: #ffffff;
}

.featured-services-section .service-card-title {
  color: #ffffff;
}

.featured-services-section .service-card-desc {
  color: #ffffff;
}

.featured-services-section .service-icon {
  filter: brightness(0) invert(1);
}

.featured-services-section .service-card:nth-child(4) .service-icon {
  filter: brightness(0) invert(1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.services-section .services-grid {
  max-width: 1050px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.services-section .service-card {
  grid-column: span 2;
}

.services-section .service-card:nth-child(7) {
  grid-column: 2 / span 2;
}

.services-section .service-card:nth-child(8) {
  grid-column: 4 / span 2;
}

.services-section .service-card:nth-child(8) .service-icon {
  filter: brightness(0) invert(1);
}

.service-card {
  background: #ffffff;
  min-height: 323px;
  text-align: center;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  background: var(--green-main);
  color: #ffffff;
  transform: scale(1.02);
}

.service-icon-wrapper {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-main);
  border-radius: 50%;
}

.service-icon {
  width: 48px;
  height: 48px;
}

.service-card-title {
  color: var(--green-main);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.service-card-button {
  margin-top: auto;
  padding: 9px 19px;
  background: var(--green-main);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2px;
}

.service-card:hover .service-card-title {
  color: #ffffff;
}

.service-card:hover .service-icon-wrapper {
  background: transparent;
}

.service-card:hover .service-icon {
  filter: brightness(0) invert(1);
}

.service-card:hover .service-card-button {
  background: transparent;
}

.service-info-section {
  background: #ffffff;
  padding: 54px 0 34px;
}

.service-info-container {
  max-width: 900px;
}

.service-info-box {
  background: #fafafa;
  padding: 22px 26px;
}

.service-info-box h2 {
  color: var(--green-main);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-info-box ul {
  padding-left: 28px;
}

.service-info-box li {
  font-size: 0.78rem;
  line-height: 1.55;
}

/* 4. Footer */
.site-footer {
  background-color: #111111;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
}

/* Adaptabilidad Responsiva */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .services-section .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-section .service-card,
  .services-section .service-card:nth-child(7),
  .services-section .service-card:nth-child(8) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .services-section {
    padding: 42px 0;
  }

  .services-section-title {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .main-nav.is-active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .social-links {
    display: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 46px;
    padding-right: 14px;
  }
}

/* ==========================================================================
   5. SECCIÓN DE INTRODUCCIÓN
   ========================================================================== */
.intro-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.intro-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.intro-image-wrapper {
  flex: 1;
  background-color: #f4f6f8; /* Fondo sutil por si la imagen no carga */
  border-radius: 8px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  color: #666; /* Color para el texto alternativo si la imagen se rompe */
  font-size: 0.9rem;
  padding: 20px;
  text-align: center;
}

.intro-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-text strong {
  color: var(--text-dark);
}

/* ==========================================================================
   6. SECCIÓN: NUESTRO PROCESO
   ========================================================================== */
.proceso-section {
  background-color: #f4f6f8; /* Gris muy claro calcado de tu imagen */
  padding: 70px 0;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a3b5c; /* Color oscuro para títulos */
  margin-bottom: 50px;
}

.section-title.text-green {
  color: var(--green-main);
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.proceso-card {
  text-align: center;
  padding: 0 15px;
}

.proceso-icon {
  width: 80px;
  height: 80px;
  background-color: #3b5068; /* Azul/Gris oscuro del círculo */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.proceso-icon svg {
  width: 40px;
  height: 40px;
}

.proceso-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.proceso-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* ==========================================================================
   7. SECCIÓN: NUESTRA COBERTURA
   ========================================================================== */
.cobertura-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.cobertura-text {
  font-size: 1.2rem;
  color: #444;
  font-weight: 500;
}

/* Adaptabilidad para móviles (Responsive Design) */
@media (max-width: 900px) {
  .intro-container {
    flex-direction: column;
  }
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .proceso-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   8. PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */
.faq-section {
  background-color: #2b4263; /* Azul oscuro del fondo en la captura */
  padding: 60px 0;
}

.faq-page-container {
  max-width: 900px;
}

.faq-heading {
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.faq-section .section-title {
  color: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 4px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: none;
  color: #ffffff;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s ease;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

.faq-content {
  display: none;
  background-color: var(--green-main); /* Verde activo de la respuesta */
  color: #ffffff;
  padding: 18px 20px 20px 45px;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Estado activo de la pregunta desplegada */
.faq-item.active .faq-trigger {
  background-color: var(--green-main);
}

.faq-item.active .faq-content {
  display: block;
}

/* ==========================================================================
   9. FOOTER (PIE DE PÁGINA)
   ========================================================================== */
.main-footer {
  background-color: #0d2818; /* Verde muy oscuro */
  color: #ffffff;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  align-items: start;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #d1d1d1;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--green-btn);
}

.social-links-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #aaaaaa;
}

.footer-bottom a {
  color: #aaaaaa;
  text-decoration: none;
}

.footer-bottom strong {
  color: #ffffff;
}

/* Ajustes Responsivos para móviles */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .social-links-footer {
    justify-content: flex-start;
  }
}
/* Estilos Adicionales para Paginas Internas (Agregados Automáticamente) */
.internal-hero {
    padding: 100px 0;
    background: var(--color-verde-oscuro, #2c592d);
    color: white;
}
.internal-hero .hero-title {
    margin-bottom: 0;
}
.content-section, .services-list-section {
    padding: 60px 0;
}
.services-extra-section {
    padding: 40px 0;
    background: var(--color-fondo-claro, #f9f9f9);
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
    gap: 40px;
  max-width: 1100px;
    margin: 0 auto;
  padding: 0 20px 60px;
}
.contact-form-wrapper,
.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-form-wrapper {
  background: #f7f7f7;
  padding: 18px 14px 16px;
  border-radius: 5px;
}
.contact-form-wrapper h3 {
  color: #244f43;
  font-size: 1rem !important;
  line-height: 1.3;
  margin-bottom: 12px;
}
.contact-form-wrapper > p {
  color: #666;
  font-size: 0.68rem !important;
  line-height: 1.45;
  margin-bottom: 17px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-group label {
  display: block;
  color: #244f43;
  font-size: 0.68rem !important;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dfe5e2;
  border-radius: 3px;
  background: #ffffff;
  color: #333;
  font-family: inherit;
  font-size: 0.68rem !important;
  padding: 9px 8px;
}
.form-group input,
.form-group select {
  height: 38px;
}
.form-group textarea {
  min-height: 108px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}
.btn-submit {
  align-self: flex-start;
  background: var(--color-verde-principal, #418043);
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.68rem !important;
  font-weight: 700;
  padding: 12px 15px;
  transition: background 0.2s ease;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #666;
  font-size: 0.58rem !important;
  line-height: 1.35;
}
.consent-label input {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 1px;
}
@media (max-width: 768px) {
    .contact-container {
    flex-direction: column;
    }
}
.contact-info {
    background: var(--color-fondo-claro, #f9f9f9);
    padding: 30px;
    border-radius: 8px;
}
.contact-info h3 {
    color: var(--color-verde-principal, #418043);
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    background: var(--color-verde-principal, #418043);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn-submit:hover {
    background: var(--color-verde-oscuro, #2c592d);
}


/* ============================================
   ESTILOS PÁGINAS INTERNAS
   ============================================ */

/* ============================================
   Quienes Somos
   ============================================ */

/* Estilos específicos Quiénes Somos */
        .qs-intro-section {
            padding: 60px 0;
            background: #fff;
        }
        .qs-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        @media (max-width: 768px) {
            .qs-intro-grid { grid-template-columns: 1fr; }
        }
        .qs-intro-text h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 18px;
        }
        .qs-intro-text p {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 16px;
        }
        .qs-intro-text p strong, .qs-intro-text p a {
            color: var(--color-verde-principal, #418043);
        }
        .qs-intro-img {
            width: 100%;
            border-radius: 8px;
            display: block;
        }

        /* Franja verde Servicio Profesional */
        .qs-pilares-section {
            background: var(--color-verde-principal, #418043);
            padding: 60px 0;
            color: #fff;
            text-align: center;
        }
        .qs-pilares-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .qs-pilares-section .qs-pilares-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 50px;
        }
        .qs-pilares-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        @media (max-width: 768px) {
            .qs-pilares-grid { grid-template-columns: 1fr; }
        }
        .qs-pilar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .qs-pilar-item img {
            width: 80px;
            height: 80px;
            margin-bottom: 18px;
            
        }
        .qs-pilar-item h3 {
          font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .qs-pilar-item p {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.92;
            max-width: 260px;
            margin: 0 auto;
        }

        /* Sección Misión / Visión */
        .qs-mv-section {
            padding: 60px 0;
            background: #fff;
        }
        .qs-mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .qs-mv-grid { grid-template-columns: 1fr; }
        }
        .qs-mv-card {
            background: #2b496a;
            color: #fff;
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
        }
        .qs-mv-card img {
            width: 60px;
            height: 60px;
            margin-bottom: 18px;
            
        }
        .qs-mv-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .qs-mv-card p {
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0.92;
        }
        .qs-mv-card p a {
            color: #7ecfa0;
        }

        /* Footer social icons SVG */
        .social-icon-svg {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            transition: background 0.3s;
            margin: 0 4px;
        }
        .social-icon-svg:hover { background: rgba(255,255,255,0.3); }
        .social-icon-svg svg { width: 18px; height: 18px; fill: #fff; }


/* ============================================
   Íconos Redes Sociales SVG (todas las páginas)
   ============================================ */

.social-icon-svg { display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.15);transition:background .3s;margin:0 4px; }
        .social-icon-svg:hover { background:rgba(255,255,255,0.3); }
        .social-icon-svg svg { width:18px;height:18px;fill:#fff; }

/* ============================================
   Estilos Página Servicios
   ============================================ */
.btn-solicitar {
    display: inline-block;
    background: var(--color-verde-principal, #418043);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}
.btn-solicitar:hover {
    background: var(--color-verde-oscuro, #2c592d);
}
.puntos-clave-section {
    background: #f4f8f4;
    padding: 40px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 900px;
}
.puntos-clave-section h3 {
    color: var(--color-verde-principal, #418043);
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.puntos-clave-list {
    list-style: none;
    padding: 0;
}
.puntos-clave-list li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}
.puntos-clave-list li::before {
    content: "•";
    color: var(--color-verde-principal, #418043);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

/* ============================================
   Estilos Página Plagas
   ============================================ */
.plagas-intro-section {
  background: #ffffff;
  padding: 62px 0 70px;
}

.plagas-intro-container {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.plagas-intro-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.plagas-intro-text {
  color: #444;
  line-height: 1.55;
}

.plagas-types-section {
  background: #ffffff;
  padding: 16px 0 60px;
}

.plagas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}

.plaga-card {
  min-height: 318px;
  padding: 28px 30px;
    text-align: center;
    color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plaga-green { background: var(--color-verde-principal, #418043); }
.plaga-blue { background: #2b496a; }
.plaga-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.plaga-card-title {
  font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.plaga-card-desc {
    line-height: 1.6;
}

@media (max-width: 700px) {
  .plagas-intro-container,
  .plagas-grid {
    grid-template-columns: 1fr;
  }

  .plagas-intro-image {
    height: 190px;
  }
}

/* Ajustes finales para pantallas pequeñas */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(92%, 640px);
  }

  .site-header {
    padding: 10px 0;
  }

  .header-container {
    min-height: 48px;
  }

  .logo-img {
    height: 46px;
    max-width: min(70vw, 210px);
  }

  .main-nav {
    z-index: 2;
  }

  .hero-section {
    min-height: 500px;
    padding: 70px 0;
    background-position: 62% center;
  }

  .hero-text-content {
    max-width: 100%;
  }

  .hero-title,
  .contact-hero-title {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .btn-whatsapp-hero {
    max-width: 100%;
    text-align: center;
  }

  .intro-section,
  .proceso-section,
  .cobertura-section,
  .faq-section {
    padding: 44px 0;
  }

  .intro-container,
  .qs-intro-grid,
  .qs-mv-grid,
  .plagas-intro-container,
  .contact-container {
    gap: 24px;
  }

  .intro-text,
  .cobertura-text {
    font-size: 1rem;
  }

  .proceso-grid,
  .qs-pilares-grid,
  .plagas-grid,
  .services-grid,
  .featured-services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-section .service-card,
  .services-section .service-card:nth-child(7),
  .services-section .service-card:nth-child(8) {
    grid-column: auto;
  }

  .service-card,
  .plaga-card {
    min-height: 0;
  }

  .contact-container {
    padding: 0 4% 44px;
  }

  .contact-form-wrapper,
  .contact-info {
    width: 100%;
    min-width: 0;
  }

  .contact-form-wrapper,
  .contact-info {
    padding: 22px 18px;
  }

  .contact-info p,
  .contact-info ul {
    font-size: 1rem !important;
  }

  .contact-info iframe {
    height: 240px;
  }

  .service-info-section {
    padding: 42px 0 28px;
  }

  .service-info-box {
    padding: 20px 18px;
  }

  .faq-heading,
  .section-title,
  .services-section-title {
    font-size: 1.45rem;
  }

  .faq-trigger {
    padding: 14px 12px;
    font-size: 0.92rem;
  }

  .faq-content {
    padding: 16px 14px 18px 38px;
  }

  .footer-grid {
    padding-bottom: 30px;
  }

  .footer-logo img {
    max-width: min(70vw, 200px);
  }

  .footer-bottom p {
    padding: 0 4%;
    line-height: 1.6;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 420px) {
  body,
  body p,
  body li,
  body a,
  body button,
  body label,
  body input,
  body textarea,
  body select {
    font-size: 16px !important;
  }

  .container {
    width: 90%;
  }

  .hero-section {
    min-height: 540px;
  }

  .hero-title,
  .contact-hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-whatsapp-hero {
    display: block;
    padding: 13px 16px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    justify-content: center;
  }
}
