/* ================================================== */
/* TABLA DE CONTENIDOS                                */
/* 1. RESET & BASE                                    */
/* 2. VARIABLES & SCROLL PROGRESS                     */
/* 3. NAVBAR                                          */
/* 4. HERO (inicio)                                   */
/* 5. HERO PRODUCTOS                                  */
/* 6. HERO CONTACTO                                   */
/* 7. BOTONES                                         */
/* 8. SECCIÓN PRODUCTOS (home)                        */
/* 9. PÁGINA PRODUCTOS (lista)                        */
/* 10. SECCIÓN CONFIANZA                              */
/* 11. SECCIÓN PLAGAS                                 */
/* 12. PLANES / SERVICIOS                             */
/* 13. CARRUSEL PLANES MOBILE                         */
/* 14. SOBRE PATRULLA                                 */
/* 15. PROCESO DEL SERVICIO                           */
/* 16. TESTIMONIOS                                    */
/* 17. FAQ                                            */
/* 18. CTA FINAL                                      */
/* 19. CONTACTO (formulario + info)                   */
/* 20. FOOTER                                         */
/* 21. WHATSAPP FLOTANTE                              */
/* 22. BLUR-UP / LAZY LOAD                            */
/* 23. ANIMACIONES & SCROLL REVEAL                    */
/* 24. RESPONSIVE MOBILE (768px)                      */
/* 25. POLÍTICA DE PRIVACIDAD                         */
/* ================================================== */


/* ================================================== */
/* 1. RESET & BASE                                    */
/* ================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F5F7FA;
    color: #0B1F3A;
}


/* ================================================== */
/* 2. VARIABLES & SCROLL PROGRESS                     */
/* ================================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a329, #00B894);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ID reutilizado en navbar para links — mantenido por compatibilidad */
#productos {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}


/* ================================================== */
/* 3. NAVBAR                                          */
/* ================================================== */
.navbar {
    width: 100%;
    background: transparent;
    color: white;
    padding: 18px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: heroFadeIn 0.6s ease 0s both;
    transition: background 0.4s ease, box-shadow 0.4s ease !important;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    width: 20%;
}

.logo img {
    transition: transform 0.3s ease, filter 0.4s ease !important;
}

.logo:hover img {
    transform: scale(1.05);
}

.menu {
    display: flex;
    gap: 30px;
    list-style: none;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.menu li {
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.menu li:hover {
    color: #00B894;
}

.menu li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00B894;
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

.menu li a.active-link {
    color: #00B894 !important;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #0B1F3A;
    font-weight: bold;
    display: none;
}

.menu-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 20px;
    display: none;
}

.menu-solicitar {
    display: flex;
    align-items: center;
}

.menu-solicitar a {
    border: 2px solid #00a329;
    color: #00e347 !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.25s ease,
                background 0.25s ease !important;
}

.menu-solicitar a:hover {
    transform: scale(1.07);
    background: rgba(0, 163, 41, 0.12);
    box-shadow: 0 4px 16px rgba(0, 163, 41, 0.25);
}

.menu-solicitar a::after {
    display: none !important;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}


/* ================================================== */
/* 4. HERO (inicio)                                   */
/* ================================================== */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 120px 4% 50px;
    position: relative;
    transition: background-image 0.4s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 163, 41, 0.2);
    border: 1px solid rgba(0, 163, 41, 0.5);
    color: #00e347;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: white;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-highlight {
    color: #00a329;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 100%;
    color: #C8D0DA;
    line-height: 1.7;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s both;
}

.hero-strong {
    color: #00e347;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s both;
}

.hero-buttons a {
    width: auto;
}

/* Features bar */
.hero-features {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 22px 32px;
    margin-top: 60px;
    max-width: 760px;
    animation: featureBoxGlow 4s ease-in-out infinite, heroFadeUp 0.9s ease 0.85s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: default;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.hero-feature:first-child { padding-left: 10px; }
.hero-feature:last-child  { padding-right: 10px; }

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px) !important;
}

.hero-feature strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.hero-feature:hover strong {
    color: #00e347;
}

.hero-feature p {
    font-size: 0.78rem;
    color: #C8D0DA;
    margin: 0;
    line-height: 1.4;
}

.hero-feature svg {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), stroke 0.3s ease;
}

.hero-feature:hover svg {
    transform: scale(1.25) rotate(-8deg);
    stroke: #00e347;
}

.hero-feature-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Entrada escalonada features */
.hero-feature:nth-child(1) { animation: featureSlideIn 0.6s ease 1.0s both; }
.hero-feature:nth-child(3) { animation: featureSlideIn 0.6s ease 1.15s both; }
.hero-feature:nth-child(5) { animation: featureSlideIn 0.6s ease 1.3s both; }


/* ================================================== */
/* 5. HERO PRODUCTOS                                  */
/* ================================================== */
.productos-hero {
    min-height: 100vh;
    background-image:
        linear-gradient(to right, rgba(5, 14, 30, 0.82) 45%, rgba(5, 14, 30, 0.247) 100%),
        url(../imagenes/banner-tiny.webp);
    background-attachment: scroll !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 140px 2% 80px;
    color: white;
}

.productos-hero-content {
    max-width: 600px;
    padding-left: 40px;
}

.productos-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 163, 41, 0.15);
    border: 1px solid rgba(0, 163, 41, 0.45);
    color: #00e347;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
    width: fit-content;
    animation: heroFadeUp 0.8s ease 0.1s both;
}

.productos-hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: white;
    animation: slideInLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.productos-hero-highlight {
    color: #00a329;
}

.productos-hero-content > p {
    font-size: 1rem;
    color: #C8D0DA;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: heroFadeUp 0.9s ease 0.4s both;
}

.productos-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: heroFadeUp 0.9s ease 0.55s both;
}

.productos-hero-buttons .btn-primary {
    width: auto;
    min-width: 180px;
}

.productos-hero-buttons .btn-primary2 {
    width: auto;
    min-width: 200px;
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.productos-hero-buttons .btn-primary2:hover {
    background: white;
    color: #0B1F3A;
    border-color: white;
}

/* Features bar productos */
.productos-hero-features {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 20px 28px;
    animation: heroFadeUp 0.9s ease 0.7s both;
}

.productos-hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 18px;
}

.productos-hero-feature:first-child { padding-left: 0; }
.productos-hero-feature:last-child  { padding-right: 0; }

.productos-hero-feature strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.productos-hero-feature p {
    font-size: 0.76rem;
    color: #A0ABBB;
    margin: 0;
    line-height: 1.4;
}

.productos-hero-feature-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}


/* ================================================== */
/* 6. HERO CONTACTO                                   */
/* ================================================== */
.contacto-hero {
    min-height: 50vh;
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.88) 50%, rgba(0,0,0,0.5) 100%),
        url(../imagenes/fondo.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 8% 60px;
    color: white;
}

.contacto-hero-content {
    max-width: 550px;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.contacto-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 163, 41, 0.2);
    border: 1px solid rgba(0, 163, 41, 0.5);
    color: #00e347;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    width: fit-content;
}

.contacto-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: white;
}

.contacto-hero-content p {
    font-size: 1rem;
    color: #C8D0DA;
    line-height: 1.7;
}


/* ================================================== */
/* 7. BOTONES                                         */
/* ================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease, color 0.3s ease !important;
}

.btn-ver-productos {
    display: block;
    width: 90%;
    margin: 18px auto 0;
    background: #00a329;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    transition: 0.3s ease;
}

.producto-card:hover .btn-ver-productos {
    background: #00521f;
    transform: translateY(-2px);
}
/* Efecto brillo hover */
.btn::after,
.btn-producto::after,
.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.18);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: inherit;
    pointer-events: none;
}

.btn:hover::after,
.btn-producto:hover::after,
.btn-cta:hover::after {
    transform: scaleX(1);
}

.btn-primary {
    background: #00a329;
    color: white;
    width: 100%;
    font-size: 15px;
}

.btn-primary:hover {
    background: #00521f;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 28px rgba(0, 163, 41, 0.35) !important;
}

.btn-primary2 {
    background: transparent;
    border: 2px solid #00a329;
    color: #00a329;
    width: 100%;
    font-size: 15px;
}

.btn-primary2:hover {
    background: #00a329;
    color: #fff;
    transform: translateY(-3px) !important;
}

.btn-secondary {
    background: #0B1F3A;
    color: #ffffff;
}

.btn-producto {
    background: #00a329;
    color: white;
    width: 100%;
    font-size: 15px;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease !important;
}

.btn-producto:hover {
    background: #00521f;
}

.btn-cta {
    display: inline-block;
    background: #00a329;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease !important;
}

.btn-cta:hover {
    background: #00521f;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 163, 41, 0.3) !important;
}

.btn-filtro {
    padding: 10px 20px;
    border: 2px solid #00a329;
    background: transparent;
    color: #0B1F3A;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.btn-filtro:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 163, 41, 0.25);
}

.btn-filtro:hover,
.btn-filtro.activo {
    background: #00a329;
    color: white;
}

.btn-filtro.activo {
    box-shadow: 0 4px 14px rgba(0, 163, 41, 0.3);
}

.btn-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00a329;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 4px;
}

.btn-form:hover {
    background: #00521f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 163, 41, 0.3);
}

/* Plan buttons */
.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 8px;
}

.plan-btn-outline {
    border: 1.5px solid #D1D9E0;
    color: #0B1F3A;
    background: transparent;
}

.plan-btn-outline:hover {
    border-color: #00a329;
    color: #00a329;
    transform: translateY(-2px);
}

.plan-btn-solid {
    background: #00a329;
    color: white;
    border: none;
}

.plan-btn-solid:hover {
    background: #00521f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 163, 41, 0.35);
}

/* Plaga CTA */
.plaga-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: #00a329;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    width: fit-content;
}

.plaga-panel-cta:hover {
    background: #00521f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 163, 41, 0.3);
}

/* Card CTA link */
.btn-card-cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #00a329;
    transition: 0.3s;
    letter-spacing: 0.02em;
}

.card:hover .btn-card-cta,
.card-destacada:hover .btn-card-cta {
    color: #00521f;
    letter-spacing: 0.05em;
}


/* ================================================== */
/* 8. SECCIÓN PRODUCTOS (home)                        */
/* ================================================== */
.productos-section {
    padding: 50px 8%;
    background: white;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 200px;
    margin: 0 auto;
}
/* Carrusel automático en imagen de producto home */
.producto-carousel-img {
    position: relative;
    min-height: 220px;
    padding: 10px;
    overflow: hidden;
}

.producto-carousel-img .producto-slide {
    position: absolute;
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: contain;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease !important;
}

.producto-carousel-img .producto-slide.active {
    opacity: 1;
    transform: scale(1);
}

.producto-card:hover .producto-carousel-img .producto-slide.active {
    transform: scale(1.06);
}

.producto-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.producto-carousel-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D1D9E0;
    transition: 0.3s ease;
}

.producto-carousel-dots span.active {
    width: 18px;
    border-radius: 20px;
    background: #00a329;
}


/* ================================================== */
/* 9. PÁGINA PRODUCTOS (lista)                        */
/* ================================================== */
.productos-page {
    padding: 100px 8%;
    background: #F5F7FA;
}

.filtros-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.productos-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Tarjetas de producto — compartidas entre home y página */
.producto-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #0B1F3A;
    box-shadow: 0 5px 20px rgba(11, 31, 58, 0.08);
    border: 1px solid #E3E8EF;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease !important;
}

.producto-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 50px rgba(0, 163, 41, 0.18) !important;
}

.producto-card.oculto {
    display: none !important;
}

.producto-img {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #5B6575;
    padding: 10px;
    overflow: hidden;
}

.producto-img img {
    transition: transform 0.4s ease !important;
}

.producto-card:hover .producto-img img {
    transform: scale(1.06);
}

.producto-info {
    padding: 25px;
}

.producto-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #0B1F3A;
}

.producto-info p {
    color: #5B6575;
    line-height: 1.6;
}

.producto-info .btn-primary {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    border-radius: 8px;
}

.producto-badge {
    display: inline-block;
    background: #e8f5ec;
    color: #00a329;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

/* Tarjetas genéricas (servicios) */
.cards-section {
    padding: 60px 8%;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: #0B1F3A;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(1);
    width: 60px;
    height: 3px;
    background: #00a329;
    border-radius: 2px;
    transition: transform 0.5s ease 0.3s;
}

.section-title p {
    color: #5B6575;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(11, 31, 58, 0.08);
    border: 1px solid #E3E8EF;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease !important;
}

.card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15) !important;
}

.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.card-image img {
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.06);
}

.card-content {
    padding: 25px 25px 15px 25px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

.card-destacada {
    transform: scale(1.06);
    border: 2px solid #00a329;
    box-shadow: 0 10px 35px rgba(0, 163, 41, 0.25);
    position: relative;
}

.card-destacada:hover {
    transform: scale(1.08) translateY(-10px);
}

.card-destacada::before {
    content: "MAS POPULAR";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #010027f6;
    color: white;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    z-index: 5;
}


/* ================================================== */
/* 10. SECCIÓN CONFIANZA                              */
/* ================================================== */
.confianza-section {
    padding: 60px 8%;
    background: #EEF3F8;
    border-top: 1px solid #E3E8EF;
    border-bottom: 1px solid #E3E8EF;
}

.confianza-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.confianza-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: #0B1F3A;
    transition: transform 0.3s ease;
}

.confianza-item:hover {
    transform: translateY(-6px);
}

.confianza-item svg {
    color: #00a329;
    stroke: #00a329;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confianza-item:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.confianza-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0B1F3A;
    margin: 0;
}

.confianza-item p {
    font-size: 0.9rem;
    color: #5B6575;
    margin: 0;
}


/* ================================================== */
/* 11. SECCIÓN PLAGAS                                 */
/* ================================================== */
.plagas-section {
    padding: 100px 8%;
    background: #EEF3F8;
    text-align: center;
}

.plagas-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 0;
}

.plaga-card {
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    padding: 28px 20px 22px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(11, 31, 58, 0.06);
}

.plaga-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 31, 58, 0.12);
}

.plaga-card.active {
    border-color: #00a329;
    box-shadow: 0 8px 32px rgba(0, 163, 41, 0.18);
    transform: translateY(-2px);
}

.plaga-emoji-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: background 0.3s;
}

.plaga-card.active .plaga-emoji-wrap {
    background: #e8f5ec;
}

.plaga-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0B1F3A;
    transition: color 0.3s;
}

.plaga-card.active .plaga-name {
    color: #00a329;
}

.plaga-chevron {
    font-size: 0.85rem;
    color: #A0ABBB;
    transition: transform 0.3s ease, color 0.3s;
}

.plaga-card.active .plaga-chevron {
    transform: rotate(180deg);
    color: #00a329;
}

/* Panel desplegable */
.plaga-panel-wrap {
    grid-column: 1 / -1;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plaga-panel-wrap.open {
    max-height: 400px;
}

.plaga-panel {
    background: white;
    border-radius: 16px;
    border: 1.5px solid #E3E8EF;
    padding: 32px;
    margin-top: 16px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
    text-align: left;
}

.plaga-panel-wrap.open .plaga-panel {
    opacity: 1;
    transform: translateY(0);
}

.plaga-panel-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.plaga-panel-emoji {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f5ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.plaga-panel-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 8px;
}

.plaga-panel-text p {
    font-size: 0.88rem;
    color: #5B6575;
    line-height: 1.7;
    max-width: 300px;
}

.plaga-panel-features {
    display: flex;
    gap: 16px;
    flex: 1.2;
}

.plaga-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 16px;
    background: #F5F7FA;
    border-radius: 12px;
    border: 1.5px solid #E3E8EF;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.plaga-feature-item:hover {
    border-color: #00a329;
    background: #f0faf2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 163, 41, 0.12);
}

.plaga-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid #E3E8EF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a329;
    transition: border-color 0.25s, background 0.25s;
}

.plaga-feature-item:hover .plaga-feature-icon {
    border-color: #00a329;
    background: #e8f5ec;
}

.plaga-feature-item strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0B1F3A;
    display: block;
}

.plaga-feature-item span {
    font-size: 0.75rem;
    color: #5B6575;
    line-height: 1.5;
}

/* Caja "no encuentro mi plaga" */
.plaga-not-found {
    margin-top: 24px;
    background: white;
    border: 1.5px solid #D4DDE8;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.plaga-not-found-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.plaga-not-found-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F5F7FA;
    border: 1.5px solid #E3E8EF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.plaga-not-found-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 4px;
}

.plaga-not-found-text span {
    font-size: 0.85rem;
    color: #5B6575;
}

.plaga-not-found-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid #00a329;
    color: #00a329;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.plaga-not-found-btn:hover {
    background: #00a329;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 163, 41, 0.25);
}

/* Hover items plaga */
.plaga-item {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.plaga-item:hover {
    transform: translateY(-12px) scale(1.08) !important;
}

.plaga-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.plaga-item:hover .plaga-icon {
    transform: rotate(-10deg) scale(1.15);
}


/* ================================================== */
/* 12. PLANES / SERVICIOS                             */
/* ================================================== */
.planes-section-wrapper {
    position: relative;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border: 1.5px solid #E3E8EF;
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.1);
}

/* Línea decorativa inferior */
.plan-card::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #00a329;
    border-radius: 2px;
    margin: -4px 0;
}

.plan-card-destacado {
    border: 2px solid #00a329;
    box-shadow: 0 10px 40px rgba(0, 163, 41, 0.15);
    transform: scale(1.04);
    z-index: 1;
}

.plan-card-destacado:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 163, 41, 0.22);
}

.plan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00a329;
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 16px;
    border-radius: 30px;
    white-space: nowrap;
}

.plan-icon {
    width: 64px;
    height: 64px;
    border: 1.5px solid #E3E8EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.plan-card:hover .plan-icon,
.plan-card-destacado .plan-icon {
    border-color: #00a329;
    background: #e8f5ec;
}

.plan-titulo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.plan-titulo span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5B6575;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plan-titulo strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00a329;
    text-transform: uppercase;
}

.plan-precio {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.plan-precio-num {
    font-size: 3rem;
    font-weight: 800;
    color: #0B1F3A;
    line-height: 1;
}

.plan-precio-usd {
    font-size: 1rem;
    font-weight: 600;
    color: #5B6575;
}

.plan-desc {
    font-size: 0.88rem;
    color: #5B6575;
    line-height: 1.6;
    margin: 0;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #0B1F3A;
}


/* ================================================== */
/* 13. CARRUSEL PLANES MOBILE                         */
/* ================================================== */
.carousel-controls {
    display: none;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #00a329;
    background: white;
    color: #00a329;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #00a329;
    color: white;
}

.carousel-btn:disabled {
    border-color: #E3E8EF;
    color: #C8D0DA;
    cursor: default;
    background: white;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E3E8EF;
    transition: 0.3s;
    cursor: pointer;
}

.carousel-dot.active {
    background: #00a329;
    width: 22px;
    border-radius: 4px;
}


/* ================================================== */
/* 14. SOBRE PATRULLA                                 */
/* ================================================== */
.sobre-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: white;
}

.sobre-img {
    width: 50%;
    overflow: hidden;
}

.sobre-img img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sobre-section:hover .sobre-img img {
    transform: scale(1.02);
}

.sobre-content {
    width: 50%;
    padding: 50px;
}

.sobre-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #0B1F3A;
    text-align: right;
}

.sobre-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5B6575;
    text-align: right;
}


/* ================================================== */
/* 15. PROCESO DEL SERVICIO                           */
/* ================================================== */
.proceso-section {
    padding: 100px 8%;
    background: #F5F7FA;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 20px;
    position: relative;
}

.proceso-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.proceso-item:hover {
    transform: translateY(-8px);
}

.proceso-numero {
    font-size: 3rem;
    font-weight: 700;
    color: #E3E8EF;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.proceso-linea {
    position: absolute;
    top: 80px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #E3E8EF;
    z-index: 0;
}

.proceso-linea.none {
    display: none;
}

.proceso-item svg {
    stroke: #00a329;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    background: #F5F7FA;
    padding: 4px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), stroke 0.3s ease;
}

.proceso-item:hover svg {
    transform: scale(1.2);
    stroke: #00521f;
}

.proceso-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B1F3A;
    margin-bottom: 10px;
}

.proceso-item p {
    font-size: 0.88rem;
    color: #5B6575;
    line-height: 1.6;
}


/* ================================================== */
/* 16. TESTIMONIOS                                    */
/* ================================================== */
.testimonios-section {
    padding: 100px 8%;
    background: white;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.testimonio-card {
    background: #F5F7FA;
    border: 1px solid #E3E8EF;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.testimonio-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 16px 40px rgba(11, 31, 58, 0.12) !important;
}

.testimonio-estrellas {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonio-texto {
    font-size: 0.95rem;
    color: #5B6575;
    line-height: 1.7;
    flex: 1;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.testimonio-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0B1F3A;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testimonio-autor h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0B1F3A;
    margin: 0;
}

.testimonio-autor span {
    font-size: 0.8rem;
    color: #5B6575;
}


/* ================================================== */
/* 17. FAQ                                            */
/* ================================================== */
.faq-section {
    padding: 100px 8%;
    background: #F5F7FA;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E3E8EF;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.faq-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0, 163, 41, 0.12) !important;
    border-color: #00a329 !important;
}

.faq-item h3 {
    margin-bottom: 10px;
    color: #0B1F3A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.4rem;
    color: #00a329;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-item.open h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    color: #5B6575;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-item.open p {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}


/* ================================================== */
/* 18. CTA FINAL                                      */
/* ================================================== */
.cta-section {
    padding: 100px 8%;
    background: #0B1F3A;
    text-align: center;
    animation: ctaGlow 4s ease-in-out infinite;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1rem;
    color: #C8D0DA;
    line-height: 1.7;
}


/* ================================================== */
/* 19. CONTACTO (formulario + info)                   */
/* ================================================== */
.contacto-section {
    padding: 80px 8%;
    background: #F5F7FA;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.contacto-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 10px;
}

.contacto-info > p {
    font-size: 0.95rem;
    color: #5B6575;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contacto-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid #E3E8EF;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #0B1F3A;
    transition: 0.3s;
    cursor: pointer;
}

.contacto-item:not(.contacto-item-static):hover {
    border-color: #00a329;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 163, 41, 0.12);
}

.contacto-item:not(.contacto-item-static):hover .contacto-arrow {
    transform: translateX(4px);
    color: #00a329;
}

.contacto-item-icon {
    width: 44px;
    height: 44px;
    background: #e8f5ec;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a329;
    flex-shrink: 0;
}

.contacto-item-text {
    flex: 1;
}

.contacto-item-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0B1F3A;
    margin-bottom: 2px;
}

.contacto-item-text span {
    font-size: 0.82rem;
    color: #5B6575;
}

.contacto-arrow {
    color: #C8D0DA;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.contacto-redes p {
    font-size: 0.82rem;
    font-weight: 600;
    color: #5B6575;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.contacto-redes-links {
    display: flex;
    gap: 12px;
}

.contacto-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #E3E8EF;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0B1F3A;
    text-decoration: none;
    transition: 0.3s;
}

.contacto-red:hover {
    border-color: #00a329;
    color: #00a329;
    transform: translateY(-2px);
}

.contacto-form-wrap {
    background: white;
    border-radius: 20px;
    border: 1px solid #E3E8EF;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(11, 31, 58, 0.06);
}

.contacto-form-header {
    background: #0B1F3A;
    padding: 28px 32px;
}

.contacto-form-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.contacto-form-header p {
    font-size: 0.85rem;
    color: #C8D0DA;
}

.contacto-form {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0B1F3A;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #0B1F3A;
    background: #F5F7FA;
    border: 1.5px solid #E3E8EF;
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0ABBB;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00a329;
    box-shadow: 0 0 0 3px rgba(0, 163, 41, 0.1);
    background: white;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235B6575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-nota {
    font-size: 0.75rem;
    color: #A0ABBB;
    text-align: center;
    margin-top: -6px;
}


/* ================================================== */
/* 20. FOOTER                                         */
/* ================================================== */
footer {
    background: #0B1F3A;
    color: white;
    padding: 60px 8% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-box h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #1E3A5F;
    padding-bottom: 8px;
}

.footer-box p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #C8D0DA;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    color: #C8D0DA;
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-block;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C8D0DA;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.social-link:hover {
    color: #ffffff;
    transform: translateX(6px) !important;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #C8D0DA;
    border-top: 1px solid #1E3A5F;
    padding-top: 20px;
}


/* ================================================== */
/* 21. WHATSAPP FLOTANTE                              */
/* ================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: waPulse 2.5s infinite !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg) !important;
    animation: none !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
}


/* ================================================== */
/* 22. BLUR-UP / LAZY LOAD                            */
/* ================================================== */
.blur-load {
    position: relative;
    overflow: hidden;
}

.blur-load img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blur-load.loaded img {
    opacity: 1;
}


/* ================================================== */
/* 23. ANIMACIONES & SCROLL REVEAL                    */
/* ================================================== */

/* Keyframes */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(60px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes featureSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes featureBoxGlow {
    0%, 100% { border-color: rgba(255,255,255,0.12); }
    50%       { border-color: rgba(0, 163, 41, 0.3); }
}

@keyframes waPulse {
    0%   { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: inset 0 0 60px rgba(0,163,41,0.05); }
    50%       { box-shadow: inset 0 0 120px rgba(0,163,41,0.12); }
}

@keyframes badgePop {
    0%   { transform: scale(0); opacity: 0; }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Active cursor feedback */
@media (hover: hover) {
    .btn-primary:active,
    .btn-cta:active,
    .btn-producto:active {
        transform: translateY(-1px) scale(0.98) !important;
    }
}


/* ================================================== */
/* 24. RESPONSIVE MOBILE                              */
/* ================================================== */

/* 1200px */
@media(max-width: 1200px) {
    .productos-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 900px */
@media(max-width: 900px) {
    .productos-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        display: flex;
        overflow: hidden;
        max-width: 100%;
        padding: 20px 5%;
    }

    .plan-card {
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        transform: none !important;
    }

    .plan-card-destacado {
        transform: none !important;
        order: unset;
    }

    .carousel-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
    }

    .carousel-btn:active {
        transform: scale(0.92);
    }
}

/* 768px — Mobile principal */
@media(max-width: 768px) {

    /* Navbar */
    .navbar {
        flex-direction: row;
        justify-content: center;
        position: fixed;
    }

    .logo {
        width: 35%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 25px;
        transition: transform 0.2s ease !important;
    }

    .menu-toggle:active {
        transform: scale(0.85) rotate(5deg);
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 40px 40px;
        gap: 20px;
        z-index: 999;
    }

    .menu.active {
        left: 0;
    }

    .menu.active li {
        animation: menuItemSlide 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }

    .menu.active li:nth-child(1) { animation-delay: 0.05s; }
    .menu.active li:nth-child(2) { animation-delay: 0.12s; }
    .menu.active li:nth-child(3) { animation-delay: 0.19s; }
    .menu.active li:nth-child(4) { animation-delay: 0.26s; }
    .menu.active li:nth-child(5) { animation-delay: 0.33s; }

    @keyframes menuItemSlide {
        from { opacity: 0; transform: translateX(-20px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    .close-menu {
        display: block;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .close-menu:active {
        transform: rotate(90deg) scale(0.8);
    }

    .menu li {
        width: 100%;
        text-align: left;
    }

    .menu li a {
        color: #0B1F3A !important;
        font-weight: bold;
    }

    .menu li a::after {
        display: none;
    }

    .menu li a:active {
        transform: scale(1.08) !important;
    }

    .menu-title {
        display: block;
    }

    .menu-solicitar a {
        border: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        color: #0B1F3A !important;
    }

    .menu-solicitar {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* Hero inicio */
    .hero {
        padding: 100px 5% 40px;
        min-height: 100svh;
        background-image:
            linear-gradient(to bottom, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.85) 100%),
            url(assets/imagenes/tiny/fondo-tiny.webp);
        background-attachment: scroll !important;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .hero-buttons a {
        width: 50%;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        margin-top: 40px;
        max-width: 100%;
    }

    .hero-feature {
        padding: 8px 0;
        width: 100%;
    }

    .hero-feature:active {
        background: rgba(255,255,255,0.1) !important;
        transform: scale(0.97) !important;
    }

    .hero-feature-divider {
        width: 100%;
        height: 1px;
    }

    /* Hero productos */
    .productos-hero {
        min-height: unset;
        height: auto;
        padding: 100px 5% 40px;
        align-items: center;
        background-position: center top !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }

    .productos-hero-content {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }

    .productos-hero-content h1 {
        font-size: 2.6rem;
    }

    .productos-hero-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .productos-hero-buttons .btn-primary,
    .productos-hero-buttons .btn-primary2 {
        width: 48%;
        min-width: unset;
        justify-content: center;
        font-size: 0.82rem;
        padding: 12px 10px;
    }

    .productos-hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
        margin-top: 0;
    }

    .productos-hero-feature {
        padding: 0;
        width: 100%;
    }

    .productos-hero-feature-divider {
        width: 100%;
        height: 1px;
    }

    /* Hero contacto */
    .contacto-hero {
        padding: 100px 5% 50px;
        min-height: 40vh;
    }

    .contacto-hero-content h1 {
        font-size: 2.4rem;
    }

    /* Botones */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 10px;
        font-size: 0.82rem;
    }

    .btn-primary {
        min-width: 45% !important;
        font-size: 15px !important;
        padding: 15px !important;
        width: 100% !important;
        min-width: unset !important;
    }

    .btn:active,
    .btn-primary:active,
    .btn-primary2:active,
    .btn-producto:active,
    .btn-cta:active,
    .btn-filtro:active {
        transform: scale(0.95) !important;
        opacity: 0.85;
    }

    .btn-filtro {
        transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease !important;
    }

    .btn-filtro:active {
        transform: scale(0.93) !important;
    }

    /* Productos */
    .productos-page {
        padding: 30px 5%;
    }

    .productos-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .producto-card {
        font-size: 0.85rem;
        display: flex;
        flex-direction: column;
    }

    .producto-card:active {
        transform: scale(0.97) !important;
        box-shadow: 0 8px 20px rgba(0,163,41,0.15) !important;
    }

    .producto-card:active .producto-img img {
        transform: scale(1.04);
    }

    .producto-img {
        padding: 8px;
    }

    .producto-img img {
        max-height: 120px;
        object-fit: contain;
    }

    .producto-info {
        padding: 10px;
    }

    .producto-info h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .producto-info p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .producto-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        margin-bottom: 4px;
        animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
    }

    .btn-producto {
        font-size: 0.75rem !important;
        padding: 8px 10px !important;
        margin-top: 8px;
    }

    /* Productos home - card grande */
    .productos-section .producto-card {
        min-height: 350px;
        justify-content: space-between;
    }

    .productos-section .producto-img {
        min-height: 220px;
        padding: 10px;
    }

    .productos-section .producto-img img {
        max-height: 210px;
        width: 100%;
        object-fit: contain;
    }

    .productos-section .producto-info {
        padding: 15px;
    }

    /* Cards genéricas carrusel */
    .cards-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        align-items: center;
    }

    .cards-grid::-webkit-scrollbar {
        display: none;
    }

    .card {
        min-width: 75%;
        max-width: 75%;
        flex: none;
        scroll-snap-align: center;
    }

    .card:active {
        transform: scale(0.97) !important;
        box-shadow: 0 8px 25px rgba(11,31,58,0.12) !important;
    }

    .card:active .card-image img {
        transform: scale(1.04);
    }

    .card-destacada {
        min-width: 85%;
        max-width: 85%;
        transform: none !important;
    }

    .card-destacada:active {
        transform: scale(0.97) !important;
    }

    /* Confianza */
    .confianza-section {
        padding: 40px 5%;
    }

    .confianza-item {
        width: 40%;
    }

    .confianza-item:active {
        transform: scale(0.95) !important;
    }

    .confianza-item h3 {
        font-size: 1.2rem;
    }

    .confianza-item svg {
        width: 32px;
        height: 32px;
    }

    /* Plagas */
    .plagas-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plaga-panel {
        flex-direction: column;
        gap: 20px;
    }

    .plaga-panel-wrap.open {
        max-height: 1100px;
    }

    .plaga-panel-features {
        gap: 10px;
        flex-wrap: wrap;
        width: 100%;
    }

    .plaga-feature-item {
        min-width: calc(50% - 5px);
        padding: 14px 10px;
    }

    .plaga-not-found {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .plaga-not-found-btn {
        width: 100%;
        justify-content: center;
    }

    .plaga-panel-left {
        flex-direction: row;
        align-items: flex-start;
    }

    .plaga-panel-emoji {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .plaga-panel-cta {
        width: auto !important;
        min-width: unset !important;
        border-radius: 30px !important;
        padding: 9px 20px !important;
        font-size: 0.8rem !important;
        display: inline-flex !important;
    }

    .plaga-item:active {
        transform: scale(0.92) !important;
    }

    /* Planes */
    .plan-precio-num {
        font-size: 2.4rem;
    }

    .plan-titulo strong {
        font-size: 1.4rem;
    }

    /* Sobre */
    .sobre-section {
        flex-direction: column;
        gap: 40px;
    }

    .sobre-img {
        width: 100%;
    }

    .sobre-content {
        width: 100%;
    }

    .sobre-content h2 {
        text-align: left;
        font-size: 2.2rem;
    }

    .sobre-content p {
        text-align: left;
    }

    /* Proceso */
    .proceso-section {
        padding: 60px 5%;
    }

    .proceso-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .proceso-linea {
        display: none;
    }

    .proceso-item {
        padding: 20px 15px;
        background: white;
        border-radius: 16px;
        border: 1px solid #E3E8EF;
    }

    .proceso-item:active {
        transform: scale(0.97) !important;
    }

    .proceso-item svg {
        background: white;
    }

    .proceso-numero {
        font-size: 2rem;
    }

    .proceso-item h3 {
        font-size: 1rem;
    }

    .proceso-item p {
        font-size: 0.8rem;
    }

    /* Testimonios */
    .testimonios-section {
        padding: 60px 5%;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonio-card {
        padding: 20px;
    }

    .testimonio-card:active {
        transform: scale(0.98) !important;
    }

    /* FAQ */
    .faq-item:active {
        transform: scale(0.99) !important;
    }

    .faq-item h3::after {
        font-size: 1.6rem;
    }

    /* CTA */
    .cta-section {
        padding: 70px 5%;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

    /* Contacto form */
    .contacto-section {
        padding: 50px 5%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contacto-form {
        padding: 24px 20px;
    }

    .contacto-form-header {
        padding: 22px 20px;
    }

    .contacto-redes-links {
        flex-direction: column;
    }

    /* Scroll reveal más rápido en mobile */
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        transition-duration: 0.5s !important;
    }

    .reveal-left  { transform: translateX(-25px) !important; }
    .reveal-right { transform: translateX(25px) !important; }
    .reveal-left.visible,
    .reveal-right.visible { transform: translateX(0) !important; }

    .stagger-1 { transition-delay: 0.05s !important; }
    .stagger-2 { transition-delay: 0.12s !important; }
    .stagger-3 { transition-delay: 0.19s !important; }
    .stagger-4 { transition-delay: 0.26s !important; }
    .stagger-5 { transition-delay: 0.33s !important; }
    .stagger-6 { transition-delay: 0.40s !important; }

    /* Section title */
    .section-title h2::after {
        width: 45px;
    }

    /* Scroll progress */
    #scroll-progress {
        height: 4px !important;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
    }

    .whatsapp-float:active {
        transform: scale(0.9) !important;
        animation: none !important;
    }

    /* Social */
    .social-link:active {
        opacity: 0.7;
        transform: scale(0.95) !important;
    }

    .footer-links li a:active {
        color: #00a329 !important;
        padding-left: 4px;
    }
}

/* 600px */
@media(max-width: 600px) {
    .productos-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch devices — desactivar hovers que requieren cursor */
@media (hover: none) {
    .card:hover,
    .producto-card:hover,
    .testimonio-card:hover,
    .plaga-item:hover,
    .confianza-item:hover,
    .proceso-item:hover,
    .faq-item:hover,
    .sobre-section:hover .sobre-img img {
        transform: none !important;
        box-shadow: inherit !important;
    }

    .logo:hover img { transform: none; }
    .menu li a::after { display: none; }

    .card:active         { transform: scale(0.97) !important; }
    .producto-card:active { transform: scale(0.97) !important; }
    .btn-producto:active  { transform: scale(0.95) !important; }
}
/* ================================================== */
/* 25.POLÍTICA DE PRIVACIDAD                             */
/* ================================================== */
.legal-page {
    background: #F5F7FA;
    padding: 140px 8% 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid #E3E8EF;
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(11, 31, 58, 0.08);
}

.legal-container h1 {
    color: #0B1F3A;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.legal-date {
    color: #5B6575;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-container h2 {
    color: #0B1F3A;
    font-size: 1.25rem;
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-container p {
    color: #5B6575;
    line-height: 1.7;
    margin-bottom: 14px;
}

.btn-legal {
    display: inline-block;
    margin-top: 25px;
    background: #00a329;
    color: white;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}
.form-privacy-text {
    font-size: 0.78rem;
    color: #5B6575;
    line-height: 1.5;
    margin: 6px 0 16px;
}

.form-privacy-text a {
    color: #00a329;
    font-weight: 700;
    text-decoration: none;
}

.form-privacy-text a:hover {
    text-decoration: underline;
}

.btn-legal:hover {
    background: #00521f;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 110px 5% 50px;
    }

    .legal-container {
        padding: 28px 20px;
    }

    .legal-container h1 {
        font-size: 1.8rem;
    }

    .legal-container h2 {
        font-size: 1.05rem;
    }
}