.helix-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.main-title {
    color: white;
    font-weight: 300;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* --- CONTENEDOR DE TARJETAS --- */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

/* --- DISEÑO DE LA TARJETA --- */
.cardb {
    background: white;
    border-radius: var(--card-radius);
    padding: 40px 30px;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cardb:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* --- ESTILOS DE LA IMAGEN (CAMBIADO) --- */
.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Flexbox ayuda a centrar, pero overflow hidden es clave para recortar la imagen */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden; /* Asegura que la imagen no se salga del círculo */
    /* Quitamos estilos de fuente antiguos */
}

/* Clase nueva para la imagen dentro del círculo */
.cardb-image {
    width: 100%;
    height: 100%;
    /* 'cover' hace que la imagen rellene todo el espacio sin deformarse, recortando si es necesario */
    object-fit: cover;
    display: block;
}

/* Colores de fondo para el círculo (se verán si la imagen tiene transparencia o no carga) */
.bg-yellow {
    background-color: #FDC055;
}
.bg-green {
    background-color: #009688;
}
.bg-red {
    background-color: #FF4B5C;
}
.bg-blue {
    background-color: #26C6DA;
}

/* --- TEXTOS --- */
.cardb h3 {
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    color: black;
    font-weight: 600;
}

.cardb p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .cardbs-container {
        flex-direction: column;
        align-items: center;
    }
    .cardb {
        width: 100%;
        max-width: 350px;
    }
    .main-title {
        font-size: 1.8rem;
    }
}