﻿/*
 * chapaantidesgaste.css
 * Este archivo solo incluye estilos específicos para la Chapa Antidesgaste.
 * El layout principal, colores y estilos básicos se toman de mallazos.css.
 */


/* Fondo ligeramente diferente al resto de la página para destacarlo */
.cotizacion-box {
    background-color: #f0f3f6; /* Un gris muy suave, diferente al blanco o al f4f7f6 del body */
    border: 1px solid #ddd;
}

.cotizacion-title {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cotizacion-subtitle {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 30px;
}

/* --- Estilos de "También te podría interesar" --- */

.related-products-section {
    margin-top: 60px;
}
/* Estilos de tarjetas de producto (product-card) para asegurar consistencia */
.product-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.btn-product-card {
    background-color: #e74c3c;
    color: #ffffff;
    display: block;
    padding: 10px 20px;
    font-size: 1em;
    margin: 0 15px 20px;
    border-radius: 5px;
}


@media (max-width: 992px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }
    .footer-about, .footer-contact, .footer-social {
        min-width: 100%;
        text-align: center;
    }
}