/* /assets/css/section-services-detail.css (VERSIÓN CON ICONOS) */

.detail-service-section {
    padding: 100px 0;
    overflow: hidden;
}

.detail-service-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Para alternar la dirección de los bloques */
.detail-service-section .direction-reverse {
    flex-direction: row-reverse;
}

.detail-service-section .icon-container {
    flex-shrink: 0;
    text-align: center;
    width: 30%; /* Le damos un ancho para que el texto se ajuste */
}

.detail-service-section .icon-container svg {
    width: 180px; /* Un tamaño generoso para el icono */
    height: 180px;
    fill: var(--secondary-color); /* Color azul celeste */
    opacity: 0.7;
    transition: transform 0.4s ease;
}

/* Efecto lupa/zoom al pasar el ratón por la sección */
.detail-service-section:hover .icon-container svg {
    transform: scale(1.1);
    opacity: 1;
}

.detail-service-section .text-container {
    flex-grow: 1;
    width: 70%;
}

.detail-service-section .text-container h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
}

.detail-service-section .text-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .detail-service-section .icon-container svg {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .detail-service-section .container {
        flex-direction: column !important;
        text-align: center;
    }
    .detail-service-section .icon-container,
    .detail-service-section .text-container {
        width: 100%;
    }
    .detail-service-section .icon-container svg {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
}