.valores-section {
            background: url('img/somos.webp') no-repeat center center / cover;
            position: relative;
            padding: 5rem 1.5rem;
            font-family: 'Segoe UI', sans-serif;
        }

        .valores-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(6px);
            z-index: 0;
        }

        .valores-section h2,
        .valores-section strong,
        .cards {
            position: relative;
            z-index: 1;
        }

        .valores-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #b91c1c;
            margin-bottom: 2rem;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        }

        .card h3 {
            font-size: 1.3rem;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .card p {
            font-size: 0.95rem;
            color: #374151;
            line-height: 1.5;
        }

        .valores-section strong {
            display: block;
            margin-top: 2rem;
            text-align: center;
            font-size: 1.2rem;
            color: #991b1b;
            letter-spacing: 1px;
        }

        .like-btn {
            display: inline-flex;
            align-items: center;
            background-color: #ef4444;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 5px 12px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .like-btn:hover {
            background-color: #dc2626;
        }

        .like-btn .count {
            margin-left: 6px;
            font-weight: bold;
        }

        @media (max-width: 600px) {
            .valores-section h2 {
                font-size: 1.8rem;
            }

            .card h3 {
                font-size: 1.1rem;
            }

            .card p {
                font-size: 0.9rem;
            }
        }