/* estilos generales */
:where([class^="ri-"])::before {
content: "\f3c2";
}

.bisel {
    text-shadow:
    1px 1 0 #006053,   /* sombra inferior derecha (oscura) */
    0 0 0 #00fedc, /* luz superior izquierda */
    1px 0 0 #202020,   /* sombra más profunda */
    -1px 0 0 #00fedc; /* luz más clara */
}

/* estilos botones sociales y otros*/
.social-buttons { background: black; padding: 1rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.social-buttons a img { width: 40px; height: 40px; transition: transform 0.3s; }    
.margin-arte {
  margin-top: 440px;
}
@media (max-width: 650px) {
  .margin-arte {
    margin-top: 230px;
  }
}
.lora {
    font-family: 'Lora', sans-serif;
    letter-spacing: 1px;
}
.lora1 {
    font-family: 'Lora', sans-serif;
}
/* estilo formulario */

.custom-radio {
position: relative;
}
.radio-circle {
width: 20px;
height: 20px;
border: 2px solid #d1d5db;
border-radius: 50%;
position: relative;
transition: all 0.2s;
}
.custom-radio input:checked + .radio-circle {
border-color: #1f2937;
}
.custom-radio input:checked + .radio-circle::after {
content: '';
width: 10px;
height: 10px;
background-color: #1f2937;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}