/* =====================================================
   AGROSOIL - Análisis de Aguas - CSS Completo
   Usa variables globales del tema
   ===================================================== */

/* Variables CSS - Basadas en variables globales */
:root {
    --water-blue-dark: var(--color-dark, #242e33);
    --water-blue-main: var(--color-secondary, #39a6de);
    --water-blue-light: var(--color-secondary-light, #5eb8e6);
    --water-cyan: var(--color-secondary, #39a6de);
    --water-teal: var(--color-secondary-dark, #2d8fc2);
    --water-white: var(--color-bg-white, #f6f7f0);
    --water-gray: var(--color-bg-gray, #f6f7f0);
    --water-text: var(--color-text-primary, #1a1a2e);
    --water-text-light: var(--color-text-secondary, #555555);
}

/* Aplicar fuente global */
.water-hero,
.water-about-section,
.water-benefits-section,
.water-types-section,
.water-plans-section,
.water-methodology-section,
.water-cta-section {
    font-family: var(--font-primary, 'Poppins', sans-serif);
}

/* ====== RESET WRAPPERS DEL TEMA PADRE ====== */
#featured-title {
    display: none !important;
}
#main-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
/* Estructura compartida → service-common.css | Solo colores aquí */
.water-hero {
    background: linear-gradient(165deg, var(--water-blue-dark) 0%, #0a2f6e 40%, #061a3d 100%);
}

.water-hero::before {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(66, 165, 245, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 188, 212, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 10%, rgba(38, 166, 154, 0.1) 0%, transparent 30%);
}

/* =====================================================
   PARTICLES
   ===================================================== */
.water-particle {
    background: rgba(66, 165, 245, 0.5);
}
.water-particle:nth-child(2) { background: rgba(0, 188, 212, 0.4); }
.water-particle:nth-child(5) { background: rgba(0, 188, 212, 0.3); }

/* =====================================================
   HERO BADGE
   ===================================================== */
.water-hero-badge {
    background: var(--color-secondary-bg, rgba(57, 166, 222, 0.15));
    border-color: rgba(57, 166, 222, 0.3);
}

.water-hero-badge span {
    color: var(--color-secondary-light, #5eb8e6);
}

.water-hero-badge svg {
    stroke: var(--color-secondary-light, #5eb8e6);
}

/* =====================================================
   HERO TITLE
   ===================================================== */
.water-hero-title .highlight {
    color: var(--color-secondary-light, #5eb8e6) !important;
    -webkit-text-fill-color: var(--color-secondary-light, #5eb8e6);
}

/* Animaciones: fadeInDown, fadeInUp, particleFloat, scrollBounce → core/animations.css */

/* =====================================================
   BUTTONS
   ===================================================== */
.water-btn-primary {
    background: linear-gradient(135deg, var(--water-blue-light) 0%, var(--water-cyan) 100%);
    box-shadow: 0 4px 20px rgba(66, 165, 245, 0.4);
}

.water-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(66, 165, 245, 0.5);
}


/* =====================================================
   ABOUT SECTION (Qué es)
   ===================================================== */
.water-about-section {
    padding: 80px 20px;
    background: var(--water-white);
    overflow-x: hidden;
}

.water-about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 60px;
    align-items: center;
}

.water-about-visual {
    position: relative;
}

.water-about-image-container {
    position: relative;
}

.water-about-image {
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
}

.water-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Badges flotantes */
.water-floating-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-md, 12px);
    padding: 14px 18px;
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0,0,0,0.1));
    display: flex;
    align-items: center;
    gap: 10px;
    animation: waterFloatBadge 4s ease-in-out infinite;
}

.water-floating-badge.experience {
    top: 15px;
    right: -20px;
    background: linear-gradient(135deg, var(--water-blue-main), var(--water-teal));
    color: white;
}

.water-floating-badge.experience .badge-number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.water-floating-badge.experience .badge-text {
    font-size: 11px;
    line-height: 1.3;
    opacity: 0.9;
}

.water-floating-badge.certified {
    bottom: 60px;
    left: -15px;
    animation-delay: 2s;
}

.water-floating-badge.certified svg {
    stroke: var(--water-blue-main);
    width: 22px;
    height: 22px;
}

.water-floating-badge.certified span {
    font-weight: 600;
    font-size: 13px;
    color: var(--water-teal);
}

@keyframes waterFloatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Decoración */
.water-about-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    z-index: -1;
}

.water-about-decoration .deco-circle {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(57, 166, 222, 0.2);
    border-radius: 50%;
}

/* Stats */
.water-about-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border-radius: var(--radius-md, 12px);
    padding: 20px;
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0,0,0,0.1));
}

/* Contenido About */
.water-about-content {
    padding-right: 20px;
}

.water-about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.water-about-label .label-line {
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--water-blue-main), var(--water-blue-light));
    border-radius: 2px;
}

.water-about-label .label-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--water-blue-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.water-about-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--water-text);
    line-height: 1.1;
    margin: 0 0 16px;
}

.water-about-title .highlight {
    color: var(--water-blue-main);
}

.water-about-text {
    font-size: 16px;
    color: var(--water-text-light);
    line-height: 1.8;
    margin: 0 0 16px;
}

.water-about-text strong {
    color: var(--water-text);
}

/* Features mini */
.water-about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.water-about-features .feature-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--water-gray);
    border-radius: 8px;
}

.water-about-features .feature-mini-icon {
    width: 40px;
    height: 40px;
    background: rgba(57, 166, 222, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.water-about-features .feature-mini-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--water-blue-main);
}

.water-about-features .feature-mini-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.water-about-features .feature-mini-text strong {
    font-size: 13px;
    color: var(--water-teal);
}

.water-about-features .feature-mini-text span {
    font-size: 11px;
    color: #888;
}

/* Quote */
.water-about-quote {
    background: linear-gradient(135deg, rgba(57, 166, 222, 0.1), rgba(0, 188, 212, 0.05));
    border-left: 3px solid var(--water-blue-main);
    border-radius: 0 12px 12px 0;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    gap: 12px;
}

.water-about-quote .quote-icon svg {
    fill: var(--water-blue-main);
    opacity: 0.3;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.water-about-quote p {
    margin: 0;
    font-size: 14px;
    color: var(--water-teal);
    line-height: 1.7;
}

/* CTA */
.water-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--water-blue-main), var(--water-teal));
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(57, 166, 222, 0.3);
}

.water-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(57, 166, 222, 0.4);
    color: white !important;
}

/* =====================================================
   WHAT SECTION (legacy class kept for responsive)
   ===================================================== */
.water-what {
    padding: 100px 20px;
    background: var(--water-gray);
}

.water-container {
    max-width: 1200px;
    margin: 0 auto;
}

.water-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.water-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--water-blue-main), var(--water-cyan));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.water-section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--water-blue-dark);
    margin-bottom: 20px;
}

.water-section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================================================
   TYPES SECTION
   ===================================================== */
.water-types {
    padding: 100px 20px;
    background: var(--water-gray);
}

.water-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.water-type-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--water-blue-light);
}

.water-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(66, 165, 245, 0.15);
}

.water-type-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--water-blue-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.water-type-title svg {
    color: var(--water-blue-light);
}

.water-type-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */
.water-benefits {
    padding: 100px 20px;
    background: #f6f7f0;
}

.water-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.water-benefit-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(66, 165, 245, 0.1);
}

.water-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(66, 165, 245, 0.2);
}

.water-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #e8f4fc, #d6ecf8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow:
        inset 2px 2px 6px rgba(255,255,255,0.9),
        inset -2px -2px 6px rgba(0,0,0,0.08),
        4px 4px 12px rgba(66, 165, 245, 0.15);
    position: relative;
    overflow: hidden;
}

.water-benefit-icon::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
}

.water-benefit-icon svg {
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1;
}

.water-benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--water-blue-dark);
    margin-bottom: 15px;
}

.water-benefit-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* =====================================================
   PLANS SECTION
   ===================================================== */
.water-plans {
    padding: 100px 20px;
    background: #f6f7f0;
}

.water-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

/* Plan Cards — estructura compartida → service-common.css | Solo colores aquí */
.water-plan-card:hover {
    border-color: var(--water-cyan);
}

.water-plan-card.featured {
    background: linear-gradient(165deg, var(--water-blue-dark) 0%, #061a3d 100%);
}

.water-plan-badge.unico {
    background: linear-gradient(135deg, var(--water-cyan), var(--water-teal));
    color: white;
}

.water-plan-name {
    color: var(--water-blue-dark);
}

.water-plan-card.featured .water-plan-name {
    color: var(--water-cyan) !important;
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.water-plan-price {
    color: var(--water-blue-main);
}

.water-plan-card.featured .water-plan-price {
    color: var(--water-cyan);
}


.water-plan-features li {
    color: #555;
}

.water-plan-card.featured .water-plan-features li {
    color: rgba(255,255,255,0.85);
}

.water-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--water-blue-light);
}

.water-plan-card.featured .water-plan-features li::before {
    color: var(--water-cyan);
}

.water-plan-btn {
    background: linear-gradient(135deg, var(--water-cyan), var(--water-teal));
    color: white !important;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.water-plan-btn:hover {
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.4);
    color: white !important;
}

.water-plan-details-btn {
    color: var(--water-cyan);
    border-color: rgba(0, 188, 212, 0.3);
}

.water-plan-details-btn:hover {
    background: rgba(0, 188, 212, 0.1);
    border-color: var(--water-cyan);
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.water-process {
    padding: 100px 20px;
    background: #f6f7f0;
}

.water-process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.water-process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.water-process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--water-blue-light), var(--water-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.3);
}

.water-process-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--water-blue-dark);
    margin-bottom: 10px;
}

.water-process-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.water-cta {
    padding: 100px 20px;
    background: linear-gradient(165deg, var(--water-blue-dark) 0%, #061a3d 100%);
    text-align: center;
}

.water-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.water-cta-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: white !important;
    margin-bottom: 20px;
}

.water-cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 40px;
}

/* =====================================================
   MODAL
   ===================================================== */
.water-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.water-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.water-modal {
    background: white;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.water-modal-overlay.active .water-modal {
    transform: scale(1) translateY(0);
}

.water-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.water-modal-close:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: scale(1.05) rotate(90deg);
}

.water-modal-close:active {
    transform: scale(0.95);
}

.water-modal-close svg {
    width: 16px;
    height: 16px;
    color: #555;
    stroke-width: 2.5;
}

.water-modal-content {
    box-sizing: border-box;
    max-height: calc(85vh);
    overflow-y: auto;
    padding: 40px;
}

@media (max-width: 480px) {
    .water-modal-content {
        padding: 24px 16px;
    }
    .water-floating-badge.experience .badge-text,
    .water-floating-badge.certified span {
        font-size: 12px;
    }
}

.water-modal-content::-webkit-scrollbar {
    width: 6px;
}

.water-modal-content::-webkit-scrollbar-track {
    background: transparent;
    margin: 16px 0;
}

.water-modal-content::-webkit-scrollbar-thumb {
    background: rgba(57, 166, 222, 0.3);
    border-radius: 3px;
}

.water-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(57, 166, 222, 0.5);
}

.water-modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e3f2fd;
}

.water-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--water-blue-dark);
    margin-bottom: 10px;
}

.water-modal-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--water-blue-main);
}

.water-modal-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.water-modal-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--water-blue-dark);
    margin-bottom: 15px;
}

.water-modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.water-modal-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    padding: 6px 0;
}

.water-modal-features li::before {
    content: "✓";
    color: var(--water-blue-main);
    font-weight: bold;
}

.water-modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--water-blue-main) 0%, var(--water-cyan) 100%);
    color: white !important;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.water-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
}

/* =====================================================
   SLIDER DOTS (Mobile only)
   ===================================================== */
.water-slider-dots {
    display: none;
}

@media (max-width: 768px) {
    .water-slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .water-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    .water-slider-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
    }

    .water-slider-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--water-blue-dark, #1565C0);
    }
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Tablets */
@media (max-width: 1024px) {
    .water-about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .water-about-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    /* Hero responsive → service-common.css */

    .water-about-section {
        padding: 50px 16px;
        overflow-x: hidden;
    }

    .water-about-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .water-about-image-container {
        overflow: hidden;
        max-width: 320px;
        margin: 0 auto;
    }

    .water-about-image {
        border-radius: 16px;
    }

    .water-about-image img {
        width: 100%;
        height: auto;
    }

    .water-about-stats {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        margin: 0;
        padding: 14px 12px;
        border-radius: 12px;
    }

    .water-about-stats .stat-divider {
        width: 1px;
        height: 36px;
    }

    .water-about-stats .stat-number {
        font-size: 20px;
    }

    .water-about-stats .stat-label {
        font-size: 11px;
    }

    .water-about-stats .stat-item {
        text-align: center;
        flex: 1;
    }

    .water-floating-badge.experience {
        right: 10px;
    }

    .water-about-decoration {
        display: none;
    }

    .water-about-title {
        font-size: 26px;
    }

    .water-about-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .water-about-features {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scroll-padding-left: 4%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding: 10px 0;
    }
    .water-about-features::-webkit-scrollbar { display: none; }
    .water-about-features .feature-mini {
        flex: 0 0 75vw;
        min-width: 75vw;
        scroll-snap-align: start;
    }

    .water-floating-badge.experience {
        right: 10px;
        top: 10px;
        padding: 10px 14px;
    }

    .water-floating-badge.experience .badge-number {
        font-size: 22px;
    }

    .water-floating-badge.certified {
        left: 10px;
        bottom: 50px;
    }

    /* Sections responsive */
    .water-benefits,
    .water-what,
    .water-plans,
    .water-process,
    .water-types {
        padding: 60px 15px;
    }

    /* Mobile Types Slider */
    .water-types-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scroll-padding-left: 4%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 10px 0;
    }
    .water-types-grid::-webkit-scrollbar { display: none; }
    .water-type-card {
        flex: 0 0 80vw;
        min-width: 80vw;
        scroll-snap-align: start;
    }

    /* Mobile Benefits Carousel */
    .water-benefits-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scroll-padding-left: 4%;
        gap: 15px;
        padding: 10px 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .water-benefits-grid::-webkit-scrollbar {
        display: none;
    }

    .water-benefit-card {
        min-width: 280px !important;
        max-width: 280px !important;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    /* Mobile Plans */
    .water-plans-grid {
        display: flex !important;
        justify-content: center;
        padding: 10px 20px 20px;
    }

    .water-plan-card {
        max-width: 90vw !important;
        width: 100%;
    }

    /* About text overflow fix */
    .water-about-content {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Mobile Process — vertical stack */
    .water-process-timeline {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        padding: 0 15px;
    }
    .water-process-step {
        min-width: unset;
        max-width: 100%;
        background: #fff;
        border-radius: 16px;
        padding: 24px 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        opacity: 1 !important;
        transform: none !important;
    }
    .water-process-dots { display: none !important; }

    /* Modal responsive */
    .water-modal-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .water-modal-features {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   INSTRUCTIVO SECTION
   ===================================================== */
.water-instructivo {
    padding: 100px 20px;
    background: #f6f7f0;
}

.water-instructivo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.water-instructivo-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(66, 165, 245, 0.15);
    transition: all 0.3s ease;
}

.water-instructivo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.15);
}

.water-instructivo-card.full-width {
    grid-column: 1 / -1;
}

.water-instructivo-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--water-blue-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.water-instructivo-card h3 svg {
    width: 28px;
    height: 28px;
    color: var(--water-blue-main);
}

.water-instructivo-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--water-blue-dark);
    margin: 25px 0 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(66, 165, 245, 0.1);
}

.water-instructivo-card h4:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.water-instructivo-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.water-instructivo-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.water-instructivo-card ul li {
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.water-instructivo-card ul li:last-child {
    border-bottom: none;
}

.water-instructivo-card ul li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--water-blue-light);
    margin-top: 2px;
}

.water-instructivo-important {
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.1), rgba(0, 188, 212, 0.1));
    border-left: 4px solid var(--water-blue-main);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 20px;
}

.water-instructivo-important p {
    margin: 0;
    font-weight: 500;
    color: var(--water-blue-dark);
}

.water-sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.water-source-item {
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.05), rgba(0, 188, 212, 0.05));
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(66, 165, 245, 0.1);
}

.water-source-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--water-blue-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.water-source-item h5 svg {
    width: 20px;
    height: 20px;
    color: var(--water-blue-main);
}

.water-source-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive for instructivo */
@media (max-width: 900px) {
    .water-instructivo-content {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scroll-padding-left: 4%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 10px 0;
    }
    .water-instructivo-content::-webkit-scrollbar { display: none; }
    .water-instructivo-card {
        flex: 0 0 80vw;
        min-width: 80vw;
        scroll-snap-align: start;
    }
    .water-instructivo-card.full-width {
        grid-column: unset;
    }
}

@media (max-width: 768px) {
    .water-instructivo {
        padding: 60px 15px;
    }

    .water-instructivo-card {
        padding: 20px;
    }
    .water-instructivo-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .water-instructivo-card p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .water-sources-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .water-source-item {
        padding: 15px;
        border-radius: 12px;
    }
    .water-source-item h5 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .water-source-item p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Small mobile: Hero responsive → service-common.css */
