/* Estilos para el header con logo y contacto */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.header-contact {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-bottom: 3px solid #fd5054;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo-img {
    max-width: 200px;
    height: auto;
}

.header-info {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.header-info-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 200px;
}

.header-info-block i {
    color: #1976d2;
    font-size: 1.2em;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.header-info-block div {
    font-size: 0.9em;
    line-height: 1.4;
}

.header-info-block b {
    color: #1976d2;
    font-weight: 700;
}

.phone-number, .email-link {
    color: #666;
    text-decoration: none;
    font-size: 0.85em;
}

.email-link:hover {
    color: #fd5054;
    text-decoration: underline;
}

.website-text {
    color: #1976d2;
    text-decoration: none;
    font-size: 0.85em;
}

.website-text:hover {
    color: #fd5054;
}

/* Estilos para la sección de bienvenidos */
.welcome-section {
    min-height: 400px;
}

.contact-button a:hover {
    background: #e91e63 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 80, 84, 0.3);
}

/* Responsive para el header */
@media (max-width: 768px) {
    .header-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .header-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .header-info-block {
        justify-content: center;
        text-align: left;
    }
}

/* Responsive para las marcas */
@media (max-width: 992px) {
    .brands-row {
        gap: 20px !important;
    }
    
    .brand-box {
        width: 180px !important;
        min-height: 200px !important;
    }
}

@media (max-width: 768px) {
    .brands-row {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-box {
        width: 250px !important;
    }
}

/* Responsive para la sección de bienvenidos */
@media (max-width: 992px) {
    .welcome-section {
        flex-direction: column;
    }
    
    .welcome-image-left,
    .welcome-image-right,
    .welcome-content {
        min-width: 100% !important;
        flex: none !important;
    }
    
    .welcome-image-left,
    .welcome-image-right {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .welcome-section h2 {
        font-size: 1.8em !important;
        text-align: center !important;
    }
    
    .peru-engines-header h3 {
        font-size: 1.3em !important;
    }
    
    .welcome-content h4 {
        font-size: 1.1em !important;
        text-align: center;
    }
    
    .welcome-content {
        text-align: center;
    }
    
    .contact-button {
        text-align: center;
    }
}

/* Estilos para la página de soporte */
.support-content {
    margin-bottom: 50px;
}

.support-list-left,
.support-list-right {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #fd5054;
}

.support-images {
    margin-top: 40px;
}

.support-images img {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}

.support-images img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    z-index: 2;
}

/* Responsive para la página de soporte */
@media (max-width: 768px) {
    .support-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .support-list-left,
    .support-list-right {
        min-width: 100% !important;
        flex: none !important;
    }
    
    .support-images {
        flex-direction: column;
        align-items: center;
    }
    
    .support-image-left,
    .support-image-right {
        min-width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
}
