/* --- Estilos para Section 01 --- */
.section01 {
    padding: 50px 0;
    background-color: #ffffff; /* Fondo blanco o el que prefieras */
    text-align: center;
}

.section01-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.section01-title {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
}

.section01-subtitle {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px; /* Limita el ancho del subtítulo */
    margin-left: auto;
    margin-right: auto;
}

.section01-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* 4 columnas en pantallas grandes, se ajusta */
    gap: 30px;
    text-align: center;
}

.section01-item {
    /* Sin fondo ni borde por defecto, como en la imagen */
}

.section01-icon {
    font-size: 2.5em; /* Tamaño del icono */
    color: #dc11a3; /* Color turquesa/azul claro (ajusta según tu paleta) */
    margin-bottom: 15px;
    display: inline-block;
    border: 2px solid #1abc9c; /* Borde circular */
    border-radius: 50%; /* Hace el borde circular */
    width: 80px; /* Ancho fijo para el círculo */
    height: 80px; /* Alto fijo para el círculo */
    line-height: 76px; /* Centra verticalmente el icono (ajusta si es necesario) */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section01-item:hover .section01-icon {
    background-color: #1abc9c; /* Relleno al pasar el ratón */
    color: #ffffff; /* Icono blanco al pasar el ratón */
}

.section01-item-title {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.section01-item-text {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

/* --- Responsive para Section 01 --- */
@media (max-width: 767.98px) {
    .section01-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ajusta para móviles */
    }
     .section01-title {
        font-size: 1.8em;
    }
    .section01-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .section01-icon {
        font-size: 2em;
        width: 70px;
        height: 70px;
        line-height: 66px;
    }
}

 @media (max-width: 575.98px) {
    .section01-grid {
         /* Podrías forzar 1 o 2 columnas si es necesario */
         grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
 }