       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
               
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* Sección de Valores */
        .valores-numbered-section {
            margin: 60px 0;
        }
        
        .section-title-valores {
            text-align: center;
            color: #1aa6b7;
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title-valores i {
            margin-right: 15px;
        }
        
        /* Grid de valores */
        .valores-numbered {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        /* Card individual */
        .card-numbered {
            background: white;
            border-radius: 12px;
            padding: 35px 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .card-numbered:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(26, 166, 183, 0.2);
        }
        
        /* Número grande de fondo */
        .card-numbered::before {
            content: attr(data-number);
            position: absolute;
            top: -30px;
            right: -10px;
            font-size: 150px;
            font-weight: 900;
            color: rgba(26, 166, 183, 0.08);
            line-height: 1;
            font-family: 'Raleway', sans-serif;
        }
        
        /* Icono cuadrado */
        .card-numbered .icon-number {
            width: 70px;
            height: 70px;
            background: #1aa6b7;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .card-numbered:hover .icon-number {
            background: #17a2b8;
            transform: scale(1.1);
        }
        
        .card-numbered .icon-number i {
            font-size: 35px;
            color: white;
        }
        
        /* Título */
        .card-numbered h3 {
            color: #2c3e50;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }
        
        /* Descripción */
        .card-numbered p {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
            text-align: justify;
            position: relative;
            z-index: 1;
            margin: 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-title-valores {
                font-size: 28px;
            }
            
            .valores-numbered {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .card-numbered::before {
                font-size: 120px;
                top: -20px;
            }
        }
        
        .preview-notice {
            background: linear-gradient(135deg, #1aa6b7, #17a2b8);
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .preview-notice h1 {
            margin: 0 0 10px 0;
            font-size: 28px;
        }
        
        .preview-notice p {
            margin: 0;
            font-size: 16px;
        }