.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hunter-green);
    margin-top: 0.5rem;
}

.products {
    padding: 6rem 0;
    background-color: var(--blanco);
}

.products-grid {
    display: grid;
    /* Limitamos el ancho máximo de las tarjetas a 400px y las centramos */
    grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
    justify-content: center;
    /* Centra las tarjetas si hay espacio extra */
    gap: 3rem;
    /* Aumentamos un poco el espacio entre tarjetas */
}

.product-card {
    background-color: var(--blanco);
    border-radius: 16px;
    /* Bordes más redondeados */
    /* Sombra más suave y moderna */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Borde sutil */
}

.product-card:hover {
    transform: translateY(-8px);
    /* Sombra más pronunciada al hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 240px;
    /* Reducimos ligeramente la altura */
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    /* Zoom suave al hover */
}

.product-info {
    padding: 2rem;
    /* Más padding interno */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.product-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gris-medio);
    margin-bottom: 1.5rem;
}

.product-benefits {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Línea más sutil */
    padding-top: 1.5rem;
}

.product-benefits h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-benefits li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gris);
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
}

.product-benefits li::before {
    content: '✓';
    color: var(--secondary);
    /* Usamos el color secundario para los checks */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        /* En móvil permitimos que ocupen más ancho si es necesario, pero manteniendo margen */
        grid-template-columns: minmax(280px, 400px);
    }

    .products {
        padding: 4rem 1rem;
    }
}