        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: #fefefe;
            color: #1e2a2e;
            line-height: 1.5;
        }

        :root {
            --rojo-coope: #c1272d;
            --rojo-oscuro: #9b1d22;
            --verde-coope: #2e7d32;
            --verde-oscuro: #1b5e20;
            --verde-claro: #e8f5e9;
            --gris-super: #f5f7fa;
            --gris-borde: #e2e8f0;
            --texto-oscuro: #1f2d3d;
            --sombra-md: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
            --sombra-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
            --radius-xl: 2rem;
            --radius-lg: 1.25rem;
        }

        /* Header con logo gigante */
        .hero-header {
            background: linear-gradient(135deg, #1a4d1f 0%, #2e7d32 50%, #40a145 100%);
            padding: 3rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
            background-size: cover;
            opacity: 0.3;
        }

        .logo-grande {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .logo-grande img {
            max-width: 280px;
            background: white;
            border-radius: 80px;
            padding: 15px 35px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }

        .logo-grande img:hover {
            transform: scale(1.02);
        }

        .hero-header h1 {
            font-size: 3.3rem;
            font-weight: 800;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .hero-header p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.95);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .stat {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            padding: 0.8rem 1.8rem;
            border-radius: 60px;
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffcd3c;
        }

        .stat-label {
            color: white;
            font-size: 0.85rem;
        }

        /* Sección de áreas (Café, Supermercados, Suministros) */
        .areas-section {
            max-width: 1300px;
            margin: -2rem auto 3rem;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .area-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--sombra-md);
            transition: all 0.3s;
            border-bottom: 5px solid;
        }

        .area-card:nth-child(1) { border-bottom-color: var(--rojo-coope); }
        .area-card:nth-child(2) { border-bottom-color: var(--verde-coope); }
        .area-card:nth-child(3) { border-bottom-color: #f39c12; }

        .area-card:hover {
            transform: translateY(-8px);
        }

        .area-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .area-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .area-card p {
            color: #4a5568;
        }

        /* Sección común */
        .container-section {
            max-width: 1300px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            font-size: 2.3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--verde-coope), var(--verde-coope));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--rojo-coope);
            margin: 1rem auto 0;
            border-radius: 5px;
        }

        /* Misión Visión */
        .mv-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .card-mv {
            flex: 1;
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--sombra-sm);
            border: 1px solid var(--gris-borde);
            transition: all 0.25s;
        }

        .card-mv:hover {
            transform: translateY(-5px);
            box-shadow: var(--sombra-md);
        }

        .card-mv i {
            font-size: 2.5rem;
            color: var(--rojo-coope);
            margin-bottom: 1rem;
        }

        .card-mv h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--verde-coope);
        }

        /* BENEFITS GRID - CONFIGURACIÓN BASE */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);  /* 4 columnas base */
            gap: 2rem;
            margin-top: 2rem;
        }

        /* Tarjetas estándar (sin wide) */
        .benefit-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            transition: 0.3s;
            border: 1px solid var(--gris-borde);
            box-shadow: var(--sombra-sm);
            display: flex;
            flex-direction: column;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--verde-coope);
        }

        /* Tarjeta ancha (doble ancho) - se aplica al benefit-card2 */
        .wide-card {
            grid-column: span 4;   /* ocupa el espacio de 2 columnas → el doble del ancho */
            background: white;
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            transition: 0.3s;
            border: 1px solid var(--gris-borde);
            box-shadow: var(--sombra-sm);
            display: flex;
            flex-direction: column;
        }

        .wide-card:hover {
            transform: translateY(-5px);
            border-color: var(--verde-coope);
        }

        /* Mantener la estructura interna de ambas clases igual */
        .benefit-icon {
            background: var(--verde-claro);
            width: 70px;
            height: 70px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
        }

        .benefit-icon i {
            font-size: 2rem;
            color: var(--verde-coope);
        }

        .benefit-card h4, .wide-card h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--rojo-coope);
            text-align: center;
        }
        
        .benefit-card p, .wide-card p {
            text-align: center;
            margin-bottom: 1rem;
            color: #4a5568;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .benefit-feature {
            font-size: 0.85rem;
            color: var(--verde-coope);
            margin-top: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .benefit-feature i {
            width: 1.2rem;
            margin-top: 0.1rem;
            color: var(--rojo-coope);
        }
        
        .feature-group {
            margin-top: 1rem;
            padding-top: 0.5rem;
            border-top: 1px dashed var(--gris-borde);
        }
        
        .badge-solidarista {
            background: var(--verde-claro);
            color: var(--verde-coope);
            font-size: 0.75rem;
            font-weight: 800;
            padding: 0.3rem 0.9rem;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 0.8rem;
            text-align: center;
            letter-spacing: 0.5px;
        }

        /* Razones */
        .razones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .razon-item {
            background: linear-gradient(135deg, #fef7e6, #fff);
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            position: relative;
            padding-left: 3.5rem;
            border-left: 4px solid var(--rojo-coope);
        }

        .razon-number {
            position: absolute;
            left: -0.8rem;
            top: 1.2rem;
            background: var(--rojo-coope);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
        }

        /* Historia */
        .historia {
            background: var(--gris-super);
            border-radius: 2rem;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .timeline-item {
            background: white;
            border-radius: 60px;
            padding: 1rem 1.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            box-shadow: var(--sombra-sm);
        }

        .timeline-year {
            background: var(--verde-coope);
            color: white;
            font-weight: bold;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
        }

        /* CTA */
        .cta-final {
            background: linear-gradient(135deg, #1a4d1f, #2e7d32, #43a048);
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            color: white;
        }

        .btn-principal {
            background: #ffcd3c;
            color: #1e2a2e;
            border: none;
            padding: 16px 36px;
            border-radius: 60px;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
            text-decoration: none;
            margin-top: 1.5rem;
        }

        .btn-principal:hover {
            transform: scale(1.03);
            background: #ffc107;
        }

        .footer {
            background: #0f2c13;
            color: #ccc;
            text-align: center;
            padding: 2.5rem;
            margin-top: 2rem;
        }

        /* Responsive: en tabletas medianas ajustamos columnas y que la tarjeta ancha siga siendo el doble en su contexto */
        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .wide-card {
                grid-column: span 2;  /* en pantallas medianas sigue siendo el doble de una columna base (ocupa 2 de 2) → ancho completo de la fila, coherente */
            }
        }

        @media (max-width: 768px) {
            .hero-header h1 { font-size: 2rem; }
            .logo-grande img { max-width: 200px; }
            .hero-stats { gap: 1rem; }
            .stat { padding: 0.4rem 1rem; }
            .container-section { padding: 2rem 1.2rem; }
            .section-title { font-size: 1.6rem; }
            .benefits-grid {
                grid-template-columns: 1fr;   /* móvil: una sola columna */
            }
            .wide-card {
                grid-column: span 1;   /* en móvil tarjeta ancha se comporta como bloque completo, igual que las demás, pero respeta su contenido más extenso */
            }
        }