body {  
    font-family: Arial, sans-serif;  
    line-height: 1.6;  
    margin: 0;  
    padding: 0;  
    background-color: #f4f4f4;  
}  

.header {  
    background: #003DA5;  
    color: #fff;  
    padding: 10px 0;  
    text-align: center;  
}  

.main-content {  
    padding: 20px;  
}  

.product-card {  
    background: #fff;  
    border-radius: 8px;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  
    padding: 20px;  
    margin: 10px 0;  
}  

.product-card h2 {  
    color: #003DA5;  
}  

.product-features {  
    list-style: none;  
    padding: 0;  
}  

.product-features li {  
    margin: 5px 0;  
}  

.footer {  
    text-align: center;  
    padding: 10px 0;  
    background: #003DA5;  
    color: #fff;  
    position: relative;  
    bottom: 0;  
    width: 100%;  
}























.brother_quienes_somos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 40px auto;
    flex-wrap: wrap;
    transition: transform 0.3s ease-in-out;    transition: opacity 0.4s ease-in-out;
}

.hidden_brother {
    opacity: 0;
    pointer-events: none;
}


.brother_quienes_somos:hover {
    transform: scale(1.02);
}

.text-container {
    flex: 1;
    max-width: 60%;
}

.text-container h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0056b3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.text-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}












.image-container {
    flex: 1;
    max-width: 35%;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


/* Adaptabilidad para móviles */
@media (max-width: 1024px) {
    .brother_quienes_somos {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .text-container {
        max-width: 100%;
    }

    .image-container {
        max-width: 100%;
        margin-top: 20px;
    }
}

































.brother_section {
    width: 100vw; /* Ocupar todo el ancho de la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4; /* Fondo suave */
    padding: 20px 0;
    transition: opacity 0.5s ease-in-out;
}

.img_brother {
    width: 100%; 
    max-width: 1600px; /* Aumenta más el ancho máximo */
    height: auto; /* Mantiene la proporción original */
    object-fit: contain; /* Evita distorsión */
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3));
}

.hidden {
    opacity: 0;
    pointer-events: none;
}


.contenedor-principal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    gap: 30px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.contenido-texto {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.titulo {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    margin-left: 10px;
}

.lista {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.item-lista {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 8px;
    text-align: left;
}

.texto-distribuidor {
    font-size: 1rem;
    font-weight: bold;
    color: #0066cc;
    margin-top: 15px;
    text-align: left;
    margin-left: 10px;
}

@media (max-width: 1024px) {
    .contenedor-principal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .contenido-texto, .titulo, .texto-distribuidor {
        text-align: center;
        margin-left: 0;
    }
    
    .contenido-texto {
        max-width: 100%;
    }
}

.imagen-contenedor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    max-width: 500px;
}

.imagen-dinamica {
    max-width: 280px;
    height: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.imagen-visible {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .contenedor-principal {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .imagen-dinamica {
        max-width: 90%;
    }

    .item-lista {
        text-align: center;
    }

    .imagen-contenedor {
        max-width: 100%;
    }
}





























.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.intro h1 {
    font-size: 2rem;
    font-weight: bold;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; /* Evita que los elementos se estiren */
    gap: 20px; /* Espaciado entre los productos */
}

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Asegura que los elementos no se expandan demasiado */
    align-items: center;
    width: 280px; /* Tamaño fijo para todos los contenedores */
    min-height: 500px; /* Ajusta según la altura deseada */
    padding: 15px;
    box-sizing: border-box;
    background-color: #f8f8f8;
    border-radius: 10px;
    text-align: center;
}



.product-item:hover {
    transform: scale(1.04);
}

.product-item h2 {
    color: #2980b9;
    margin-bottom: 15px;
}

.product-item img {
    width: 80%;
    max-width: 100%; /* Evita que se pase del ancho del contenedor */
    height: auto;
    margin-bottom: 15px;
}

.product-item ul {
    list-style-type: none;
    padding: 0;
}

.product-item li {
    margin: 10px 0;
}

.detailed-specifications {
    margin-bottom: 40px;
}

.product-details {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.product-details img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
}

.product-details ul {
    list-style-type: none;
    padding: 0;
}

.product-details li {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .products {
        flex-direction: column;
        align-items: center;
        padding: 0; /* Evita margen lateral */
    }

    .product-item {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .intro h1 {
        font-size: 1.5em;
    }

    .product-item {
        width: 100%;
        max-width: 100%;
        margin: 10px auto; /* Centrar sin desbordar */
    }

    .product-details img {
        width: 80%;
    }
}

.product-item img, .product-item h2 {
    opacity: 0;
    transform: translateY(20px); /* Desplazamiento hacia abajo */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Cuando el elemento tiene la clase 'visible', muestra el contenido */
.product-item.visible img, .product-item.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.quote-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white; 
    text-decoration: none;
    border-radius: 5px;
    transition: transform 1s ease-out, opacity 1s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.quote-button:hover {
    transform: scale(1.1);
}

.product-item img {
    max-width: 100%;
    max-height: 200px; /* Ajusta según necesites */
    height: auto;
    object-fit: contain;
}


.product-item, .product-details {
    display: flex;
    flex-direction: column; /* Asegura que el contenido interno fluya verticalmente */
    justify-content: space-between; /* Distribuye los elementos de forma equilibrada */
    flex: 1 1 calc(33.333% - 20px); /* Mantiene el ancho sin desbordamientos */
    min-height: 100%; /* Igual altura */
}
.product-item img, 
.product-details img {
    display: block; /* Evita que las imágenes tengan espacio adicional */
    margin: 0 auto; /* Centra horizontalmente */
}
section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* O usa 'center' si es necesario */
}

.product-item {
    width: calc(33.33% - 20px); /* Ajusta según el número de elementos por fila */
    max-width: 300px; /* Evita que se hagan demasiado grandes */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .product-item {
        width: calc(50% - 20px); /* Para tablets, 2 por fila */
    }
}

@media (max-width: 480px) {
    .product-item {
        width: 100%; /* Para móviles, 1 por fila */
    }
}
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espaciado entre los elementos */
}

.product-item {
    width: calc(33.333% - 20px); /* Ajusta el tamaño para que entren 3 por fila */
    min-width: 300px; /* Para evitar que sean demasiado pequeños */
    max-width: 350px; /* Controlar el tamaño */
    text-align: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
}

@media (max-width: 1024px) {
    .product-item {
        width: calc(50% - 20px); /* En pantallas medianas, 2 por fila */
    }
}

@media (max-width: 600px) {
    .product-item {
        width: 100%; /* En móviles, una por fila */
    }
}














































































/* Ajustar el tamaño del contenedor */
.brother_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px; /* Antes era 40px, ahora más grande */
    max-width: 1600px; /* Antes 1200px, ahora más ancho */
    margin: auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.521), rgba(150, 150, 150, 0.4), rgba(110, 110, 110, 0.4)); 
}

.brother_header.show {
    opacity: 1;
    transform: translateY(0);
}



/* Hacer el texto más grande */
.brother_texto {
    max-width: 65%; /* Aumentado para ocupar más espacio */
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.brother_texto h1 {
    font-size: 2.5rem; /* Antes 2rem, ahora más grande */
    margin-bottom: 15px;
}

.brother_texto p {
    font-size: 1.4rem; /* Antes 1.2rem, ahora más grande */
    line-height: 1.6;
}

/* Hacer la imagen más grande */
.brother_inicio {
    max-width: 45%;
    text-align: right;
}

.img_brother_inicio {
    width: 100%;
    max-width: 650px; /* Antes 350px, ahora más grande */
    height: auto;
    box-shadow: 8px 8px 25px rgba(120, 119, 119, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%);
}

.img_brother_inicio:hover {
    transform: scale(1.02); /* Antes 1.05, ahora más grande */
    box-shadow: 12px 12px 35px rgba(0, 0, 0, 0.6);
}

/* Responsividad ajustada */
@media (max-width: 768px) {
    .brother_header {
        flex-direction: column;
        text-align: center;
        padding: 30px; /* Ajustado para móviles */
    }

    .brother_texto {
        max-width: 100%;
        margin-bottom: 25px;
    }

    .brother_inicio {
        max-width: 100%;
        text-align: center;
    }

    .img_brother_inicio {
        max-width: 90%;
    }
}











.venta_renta {
    text-align: center;
    background: linear-gradient(135deg, #c5ceff, #6f84ff); /* Degradado azul elegante */
    color: #fff;

    border-radius: 2px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    width: 100%; /* Ocupar todo el ancho disponible */
    max-width: 100vw; /* Asegura que sea lo más largo posible */
    transition: transform 0.3s ease-in-out;

}

/* Efecto hover para darle dinamismo */
.venta_renta:hover {
    transform: scale(1.01);
}

.venta_renta h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    color: white;
}

.venta_renta p {
    font-size: 22px;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

/* Adaptabilidad para pantallas pequeñas */
@media (max-width: 768px) {
    .venta_renta {
        padding: 30px 15px;
    }

    .venta_renta h1 {
        font-size: 30px;
    }

    .venta_renta p {
        font-size: 18px;
    }
}




























