/* assets/css/circular-sections.css */

/* Contenedor principal */
.cs-section {
    display: flex;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Columna izquierda */
.cs-left {
    flex: 0 0 auto;
    width: 180px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor del círculo */
.cs-circle-container {
    position: relative;
    width: 150px;
    height: 150px;
}

/* Imagen del círculo */
.cs-circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 5px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Número */
.cs-number {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #f8a13f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    right: -5px;
    top: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Columna derecha */
.cs-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Título */
.cs-title {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
}

/* Lista */
.cs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Elemento de la lista */
.cs-list-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #444;
    font-size: 16px;
    line-height: 1.5;
}

/* Punto de la lista */
.cs-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #555;
    font-size: 18px;
}

/* Estilos responsivos */
@media screen and (max-width: 768px) {
    .cs-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }
    
    .cs-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 25px;
    }
    
    .cs-right {
        width: 100%;
    }
    
    .cs-list-item {
        text-align: left;
        padding-left: 25px;
    }
}