.cfap-wrapper {
    width: 100%;
    text-align: center;
    padding: 20px 0 40px;
}

/* Línea superior */
.cfap-line {
    width: 90%;
    height: 4px;
    background: #a68950;
    margin: 0 auto 30px;
    border-radius: 4px;
}

/* Controles */
.cfap-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.cfap-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Iconos principales */
.cfap-icon {
    width: 50px;
    height: 50px;
}

/* Imagen circular del centro */
.cfap-image-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #a68950;
    padding: 14px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cfap-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* 📱 MÓVIL (menor a 600px) */
@media (max-width: 600px) {

    .cfap-controls {
        gap: 15px; /* botones más juntos */
    }

    .cfap-icon {
        width: 30px; /* iconos más pequeños */
        height: 30px;
    }

    .cfap-image-wrapper {
        width: 110px;   /* más pequeño y proporcionado */
        height: 110px;
        padding: 10px;
    }

    .cfap-line {
        width: 85%;
        height: 3px;  /* línea más fina */
        margin-bottom: 20px;
    }
}
