.container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* HEADER SECTION */
        .header-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .header-section h1 {
            font-size: 42px;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .header-section p {
            font-size: 18px;
            color: #666;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* GRID DE ELEMENTOS */
        .elementos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .elemento-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .elemento-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .elemento-imagen {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .elemento-imagen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .elemento-card:hover .elemento-imagen img {
            transform: scale(1.08);
        }

        .elemento-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .elemento-info h3 {
            font-size: 20px;
            color: #1a1a1a;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .elemento-info p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 15px;
        }

        .elemento-tag {
            display: inline-block;
            background-color: #e0f4ff;
            color: #0066cc;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            align-self: flex-start;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .elementos-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }

            .header-section h1 {
                font-size: 32px;
            }

            .header-section p {
                font-size: 16px;
            }

            .elementos-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }

            .elemento-imagen {
                height: 200px;
            }

            .elemento-info {
                padding: 20px;
            }

            .elemento-info h3 {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .elementos-grid {
                grid-template-columns: 1fr;
            }

            .header-section h1 {
                font-size: 26px;
            }
        }