/* ======== FABRICAMOS ABOUT ======== */
.fabricamos-about{
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}
.title{
    width: 100%;
    text-align: center;
    padding-top: 50px;
}
.title h1{
    color: #70110e;
    font-weight: 600;
    font-size: 34px;
}
.subtitle{
    width: 100%;
    text-align: center;
    padding:10px  30px;
}
.subtitle h2{
    font-size: 28px;
    font-weight: 500;
}

/* ======== FABRICAMOS ABOUT ======== */
.container-text-img{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.container-text{
    text-align: start;
    align-content: center;
    max-width: 50%;
}
.container-text p{
    color: black;
    font-weight: 400;
    font-size: 22px;
}
.container-img{
    max-width: 50%;
    align-content: center;
}
.container-img img{
    max-width: 500px!important;
}
.seccion-title{
    height: 100px;
    background-color: #70110e;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 30px auto 50px;
}
.seccion-title h1{
    padding: 30px 0;
    color: white;
    font-size: 30px;
}
/* ======== SOLICITUD ======== */
.solicitud{
    max-width: 900px;
    text-align: center;
    margin: auto;
    padding: 60px 0;
}
.solicitud p{
    color: black;
    justify-self: center;
    font-size: 20px;
    font-weight: 300;
}
.btn-container{
    align-items: center;
    width: 100%;
    max-width: 1000px;
    padding: 50px 0;
    align-content: center;
}
.btn-container button{
    background-color: #942a27;
    color: #ffffff;
    padding: 20px 30px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-container button:hover {
  background-color: #70110e;
}
/* ======== SERVICIOS ======== */
.servicios-section {
    width: 100%;
    padding: 40px 20px 60px;
    background: #ffffff;
}
.servicios-grid {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
}
.servicio-card {
    width: 100%;
    background: #f1f1f1;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.servicio-image {
    width: 100%;
    max-height: 250px !important;
    overflow: hidden;
}
.servicio-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.servicio-card:hover .servicio-image img {
    transform: scale(1.04);
}
.servicio-content {
    min-height: 102px;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f1f1f1;
}
.servicio-content h3 {
    margin: 0;

    color: #8c1d1d;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;

    line-height: 1.2;
}
.servicio-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e00000;

    font-size: 38px;
}

/* ======== CATÁLOGO ======== */
.card-service {
    width: 100%;
    height: 450px;

    display: flex;
    flex-direction: column;

    background: #fff;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.img-container {
    width: 100%;
    height: 195px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #fff;
}
.img-container img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;
}
.container-content {
    flex: 1;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    text-align: center;
}
.container-content h3 {
    margin: 0;

    font-size: 22px;
    line-height: 1;

    font-weight: 500;

    color: #8c1d1d;

    text-align: center;
}