/* Contenedor general */
.about-container {
    font-family: 'Montserrat', sans-serif;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Bloque de texto (Quiénes somos) */
.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #22a66b;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: black;
}

/* Imagen */
.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Bloque Misión / Visión */
.about-mv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.about-card {
    flex: 1 1 350px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-card h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #22a66b;
}

.about-card p {
    font-size: 1em;
    line-height: 1.6;
    color: black;
}

/* Bloque Valores */
.about-valores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    /* Para que en móviles se acomode uno debajo del otro */
}

.about-valores .about-image {
    flex: 1 1 350px;
    text-align: center;
}

.about-valores .about-image img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-valores .about-text {
    flex: 1 1 400px;
}

.about-valores .about-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #22a66b;
}

.about-valores .about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: black;
}

/* Sección Misión */
.about-mision {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    /* Para móviles */
}

.about-mision .about-text {
    flex: 1 1 400px;
}

.about-mision .about-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #22a66b;
}

.about-mision .about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: black;
}

.about-mision .about-image {
    flex: 1 1 350px;
    text-align: center;
}

.about-mision .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sección Visión */
.about-vision {
    text-align: center;
    margin-top: 60px;
}

.about-vision .about-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #22a66b;
}

.about-vision .about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: black;
    max-width: 800px;
    margin: 0 auto 30px auto;
    /* Centrar texto */
}

.about-vision .about-image img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* Giros atendidos */

.giros-section {
    font-family: 'Monserrat', sans-serif;
    padding: 60px 20px;
    text-align: center;
}

.giros-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #287c9c;
}

.giros-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: black;
}

.giros-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    justify-items: center;
}

.giro-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    /* Hace la imagen circular */
    display: block;
}

.giro-item p {
    margin-top: 10px;
    font-size: 1.1em;
    color: black;
}

/* Productos {*/
#products .card {
    max-width: 90%;
    margin: 50px auto;
    padding: 30px 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#products .card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#products h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #1c6584;
    text-align: center;
    font-weight: 700;
}

/* Barra de filtros */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-bar label {
    font-weight: 500;
    font-size: 1rem;
    color: #333;
}

.filter-bar input,
.filter-bar select {
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #4a8cc4;
    box-shadow: 0 0 5px rgba(74, 140, 196, 0.3);
}

/* Grid de productos */
#product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* Tarjeta individual de producto */
.product {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.productoimg {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.productoimg:hover {
    transform: scale(1.05);
}

.product h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1c6584;
}

.product p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.product .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2a7fbb;
    margin-bottom: 10px;
}

/*} Productos fin */

/* Marcas lideres */

/* Sección marcas */
.marca-seccion {
    text-align: center;
    padding: 60px 40px;
    font-family: 'Montserrat', sans-serif;
}

.marca-seccion h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #22a66b;
}

.marca-seccion p {
    font-size: 1.1em;
    color: black;
    margin-bottom: 40px;
}

/* Logos en cuadrícula */
.cliente-imagenes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* siempre 3 columnas */
    grid-template-rows: repeat(7, auto);
    /* siempre 7 filas */
    gap: 30px;
    justify-items: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cliente-imagenes img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;

}

.cliente-imagenes img:hover {
    transform: scale(1.1);
}