@charset "utf-8";
/* CSS Document */


        /* ----- RESET Y BASE ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background-color: #ffffff;
            color: #1a1a1a;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
        }

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

        /* ----- PALETA DE COLORES ----- */
        :root {
            --azul: #0b2265;
            --naranja: #ff8201;
            --blanco: #ffffff;
            --oscuro: #1a1a1a;
            --gris: #f4f6fa;
            --sombra: 0 15px 30px rgba(0, 0, 0, 0.08);
            --borde-radio: 20px;
        }

        /* ----- BOTONES PRINCIPALES ----- */
        .btn-naranja {
            background: #25D366;
            color: #fff;
            border: 2px solid #1fad53;
            padding: 16px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.25s ease;
            cursor: pointer;
            letter-spacing: 0.3px;
        }

        .btn-naranja:hover {
            transform: scale(1.03) translateY(-3px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
            background: #1fad53;
        }

        .btn-naranja i {
            font-size: 1.3rem;
        }

        .btn-blanco {
            background: #ffffff;
            color: var(--azul);
            border: 2px solid var(--azul);
            padding: 14px 30px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.25s ease;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .btn-blanco:hover {
            background: var(--azul);
            color: #fff;
            border-color: var(--azul);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(11, 34, 101, 0.15);
        }

        .btn-whatsapp-flotante {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: #25D366;
            color: white;
            width: 68px;
            height: 68px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.6rem;
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.2s ease;
            animation: pulse-whatsapp 2s infinite;
        }

        .btn-whatsapp-flotante:hover {
            transform: scale(1.08);
            box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* ----- HEADER STICKY ----- */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--blanco);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 16px 0;
        }

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


        .logo {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            font-size: 1.7rem;
            color: var(--azul);
        }
        .logo span { color: var(--naranja); }

        .logo img {
            height: 60px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .nav-menu a {
            color: var(--azul);
            font-weight: 700;
            font-size: 1rem;
            transition: color 0.2s;
			text-transform: uppercase;
        }
        .nav-menu a:hover { color: var(--naranja); }

        .header-contactos {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .header-telefono {
            background: var(--naranja) !important;
            padding: 8px 16px 8px 18px;
            border-radius: 50px;
            font-weight: 700 !important;
            color: #ffffff !important;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: pulse-phone 2.5s infinite;
            font-size: 1.1rem !important;
        }
		.header-telefono:hover {
            background: var(--naranja) !important;
			color: #ffffff !important;
			transform: scale(1.02);
        }
		

        .header-telefono i {
            color: #ffffff;
            font-size: 1.2rem;
        }

        @keyframes pulse-phone {
            0% { background: #f0f4ff; }
            50% { background: #e6edfe; }
            100% { background: #f0f4ff; }
        }

        .btn-whatsapp-header {
            background: #25D366;
            color: white !important;
            border-radius: 50px;
            padding: 8px 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
			font-size: 1.1rem !important;
			        }
        .btn-whatsapp-header:hover { background: #1fbc5c; transform: scale(1.02); }

        .hamburguesa {
            display: none;
            font-size: 1.9rem;
            color: var(--azul);
            cursor: pointer;
            background: none;
            border: none;
        }

        /* ----- HERO ----- */
        .hero {
            background: linear-gradient(135deg, rgba(0, 0, 0,0.8) 0%, rgba(0, 0, 0,0.5) 100%), url('../images/hero.png') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 60px 0;
            color: white;
            background-attachment: fixed;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero h1 {
            font-size: clamp(2.4rem, 8vw, 4.2rem);
            font-weight: 800;
            text-shadow: 0 8px 20px rgba(0,0,0,0.5);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.4rem;
			line-height: 1.2;
            /*opacity: 0.95;*/
            text-shadow: 0 3px 12px rgba(0,0,0,0.5);
            margin-bottom: 30px;
            font-weight: 500;
        }

        .hero-botones {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 24px 0 20px;
			place-content: center;
        }

        .hero-confianza {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            font-weight: 500;
            opacity: 0.9;
            font-size: 1rem;
            letter-spacing: 0.3px;
			place-content: center;
        }
        .hero-confianza i { margin-right: 6px; }

        /* ----- SECCIONES GENERALES ----- */
        section {
            padding: 110px 0;
        }

        .section-titulo {
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 700;
            color: var(--azul);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
			line-height: 1.1;
        }

        .section-subtitulo {
            font-size: 1.2rem;
            color: #ff8201;
            margin-bottom: 40px;
            max-width: 700px;
			font-weight: 500;
        }

        .text-center {
            text-align: center;
        }
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* ----- TARJETAS BENEFICIOS ----- */
        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 30px;
        }

        .beneficio-card {
            background: var(--blanco);
            padding: 30px 20px;
            border-radius: var(--borde-radio);
            box-shadow: var(--sombra);
            text-align: center;
            transition: all 0.3s ease;
            border-bottom: 5px solid var(--naranja);
			line-height: 1.3;
        }

        .beneficio-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 40px rgba(0,0,0,0.08);
        }

        .beneficio-card i {
            font-size: 2.8rem;
            color: var(--naranja);
            margin-bottom: 16px;
        }

        .beneficio-card h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--azul);
        }

        /* ----- PRODUCTOS ----- */
        .productos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 35px;
        }

        .producto-card {
            background: white;
            border-radius: var(--borde-radio);
            box-shadow: var(--sombra);
            padding: 20px 40px 30px;
            transition: all 0.25s ease;
            text-align: center;
            border: 1px solid #f0f0f0;
        }

        .producto-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 45px rgba(0,0,0,0.08);
        }

        .producto-card img {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            margin-bottom: 12px;
        }

        .producto-card h3 {
            font-size: 1.6rem;
            color: var(--azul);
            margin-bottom: 6px;
        }
        .producto-card p {
            color: #444;
            margin-bottom: 20px;
            font-size: 0.95rem;
			line-height: 1.3;
        }

        .producto-card .btn-naranja {
            padding: 12px 24px;
            font-size: 1rem;
        }

        /* ----- SECCIÓN NARANJA (compra rápida) ----- */
        .seccion-naranja {
            background: var(--naranja);
            color: white;
			padding: 70px;
        }
        .seccion-naranja .section-titulo {
            color: white;
        }
        .seccion-naranja .section-subtitulo {
            color: rgba(255,255,255,0.9);
			font-weight: 600;
        }
        .seccion-naranja .btn-blanco {
            background: white;
            color: var(--azul);
            border-color: white;
        }

        .pulse-btn {
            animation: pulse-boton 2s infinite;
        }

        @keyframes pulse-boton {
            0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
            70% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
        }

        /* ----- SOBRE NOSOTROS (dos columnas) ----- */
        .sobre-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .sobre-imagen img {
            border-radius: var(--borde-radio);
            box-shadow: var(--sombra);
            transition: transform 0.5s ease;
        }
        .sobre-imagen img:hover {
            transform: scale(1.01);
        }

        /* ----- DISTRITOS / MAPA ----- */
        .distritos-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px 18px;
            margin: 25px;
        }

        .distrito-chip {
            background: white;
            padding: 12px 24px;
            border-radius: 60px;
            font-weight: 600;
            color: var(--azul);
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            border: 1px solid #e0e7f0;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .distrito-chip i { color: var(--naranja); }
        .distrito-chip:hover {
            background: var(--azul);
            color: white;
            border-color: var(--azul);
        }

        .mapa-container {
            border-radius: var(--borde-radio);
            overflow: hidden;
            box-shadow: var(--sombra);
            margin: 30px 0;
            background: #eef2f7;
            height: 320px;
            position: relative;
        }

        .mapa-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: saturate(1.1) contrast(1.05);
        }

        /* ----- FAQ (acordeón) ----- */
        .faq-item {
            background: white;
            margin-bottom: 12px;
            border-radius: 16px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            border: 1px solid #edf2f7;
            overflow: hidden;
        }

        .faq-pregunta {
            padding: 18px 24px;
            font-weight: 700;
            color: var(--azul);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: #fafcff;
            transition: 0.2s;
        }
        .faq-pregunta i {
            transition: transform 0.3s;
        }
        .faq-pregunta.active i {
            transform: rotate(180deg);
        }

        .faq-respuesta {
            padding: 0 24px 18px;
            color: #333;
            display: none;
        }

        .faq-respuesta.mostrar {
            display: block;
        }

        /* ----- FOOTER ----- */
        .footer {
            background: var(--azul);
            color: rgba(255,255,255,0.85);
            padding: 50px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer h4 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .footer .logo {
            color: white;
            font-size: 1.8rem;
        }

        .footer-contacto i {
            width: 24px;
            color: var(--naranja);
        }

        .footer-distritos {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 12px;
        }

        .footer-distritos span {
            background: rgba(255,255,255,0.06);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
        }

        .footer-copy {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* ----- RESPONSIVE ----- */
        @media (max-width: 992px) {
            .sobre-grid {
                grid-template-columns: 1fr;
            }
            .sobre-imagen {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .header .container {
                flex-wrap: nowrap;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                background: white;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                padding: 20px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.05);
                gap: 16px;
                border-top: 1px solid #eee;
            }
            .nav-menu.abierto {
                display: flex;
            }
            .hamburguesa {
                display: block;
            }
            .header-contactos .btn-whatsapp-header span {
                display: none;
            }
            .header-telefono {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            .hero {
                min-height: 70vh;
                background-attachment: scroll;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .btn-naranja, .btn-blanco {
                padding: 14px 22px;
                font-size: 1rem;
            }
            .productos-grid {
                grid-template-columns: 1fr 1fr;
            }
            .beneficios-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .productos-grid {
                grid-template-columns: 1fr;
            }
            .beneficios-grid {
                grid-template-columns: 1fr;
            }
            .header-telefono span {
                display: none;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .btn-whatsapp-flotante {
                width: 60px;
                height: 60px;
                font-size: 2.2rem;
                bottom: 20px;
                right: 20px;
            }
        }

        /* utilidades */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .gap-2 { gap: 10px; }
        .mt-4 { margin-top: 30px; }
        .mb-3 { margin-bottom: 20px; }
        .flex-center { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
    