.elementor-29182 .elementor-element.elementor-element-1f6d275{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-2519e76 *//* ======================================================= */
/* === 1. Estilos de la Sección "Acerca de Nosotros" (.strongers-about-section) === */
/* ======================================================= */

/* --- Estilos Generales y Estructura --- */
.strongers-about-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px; 
    align-items: center;
    text-align: left;
}

/* --- Estilos del Logo (720px en Escritorio) --- */
.about-logo {
    flex: 0 0 720px;
    max-width: 720px; 
    text-align: center;
}

.about-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease;
}

.about-logo img:hover {
    transform: scale(1.03);
}

/* --- Estilos del Contenido de Texto (Título y Párrafos Justificados) --- */
.about-content {
    flex: 1; 
    color: #444; 
}

.about-title {
    font-size: 2em;
    color: #CC0000; 
    margin-bottom: 20px;
    border-bottom: 3px solid #FFC600; 
    padding-bottom: 10px;
    text-align: justify; /* Título Justificado */
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify; /* Párrafos Justificados */
}

.about-content strong {
    color: #222; 
    font-weight: 700;
}


/* ======================================================= */
/* === 2. Estilos del Footer (#strongers-footer) === */
/* ======================================================= */

#strongers-footer {
    background-color: #2c3e50;
    color: #ecf0f1; 
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around; 
    gap: 30px; 
}

.footer-contact,
.footer-hours, 
.footer-links {
    flex: 1; 
    min-width: 220px; 
}

.footer-contact h3,
.footer-hours h3, 
.footer-links h3 {
    color: #3498db; 
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #3498db; 
    padding-bottom: 5px;
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-contact p {
    display: flex; 
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #3498db; 
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db; 
}

.footer-brand {
    flex-basis: 100%; 
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e; 
    margin-top: 10px;
    font-size: 0.9em;
}


/* ======================================================= */
/* === 3. Media Queries (Responsive Design) === */
/* ======================================================= */

/* Tabletas (992px y menos) */
@media (max-width: 992px) {
    /* Acerca de Nosotros */
    .about-container {
        flex-direction: column; 
        gap: 30px;
        text-align: center;
    }
    
    .about-logo {
        flex: 0 0 50%; 
        max-width: 300px; 
    }

    .about-title {
        font-size: 1.8em;
        text-align: center; /* Centrar el título en vista de columna */
    }

    .about-content {
        padding: 0 10px;
    }
}

/* Móviles grandes / Tabletas pequeñas (768px y menos) */
@media (max-width: 768px) {
    /* Footer */
    .footer-container {
        justify-content: center;
    }
    
    .footer-contact,
    .footer-hours,
    .footer-links {
        min-width: 45%;
    }
}

/* Móviles (576px y menos) */
@media (max-width: 576px) {
    /* Acerca de Nosotros */
    .strongers-about-section {
        padding: 40px 15px;
    }

    .about-title {
        font-size: 1.5em;
        text-align: center; 
    }

    .about-content p {
        font-size: 1em;
        text-align: justify;
    }
    
    .about-logo {
        max-width: 780px; 
        margin-bottom: 20px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column; 
        text-align: center;
    }

    .footer-contact,
    .footer-hours,
    .footer-links {
        margin-bottom: 20px;
        min-width: 100%;
    }

    .footer-contact p {
        justify-content: center; 
    }
}/* End custom CSS */