/* Fondo general */
.fondo-general {
    background-color: #ddd3c2;
}

.h3 {

    color: #2c916f;
}


/* Títulos y botones principales (rojo) */
.rojo-titulo {
    color: #b7282e;
}

/* Texto general */
.texto {
    color: #3c3c3c;
}

/* Bordes, iconos y detalles (neutro) */
.neutro {
    color: #a89f94;
}

/* Links y elementos decorativos (verde) */
.verde {
    color: #6d8a74;
}

/* Fondo claro para secciones y tarjetas destacadas */
.fondo-claro {
    background-color: #fffaf5;
}

/* Ejemplo de bordes neutros */
.borde-neutro {
    border: 1px solid #a89f94;
}

/* Estilo de botones con fondo rojo y texto blanco */
.boton-rojo {
    background-color: #b7282e;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-image: url(fondojapon.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* Asegura que la imagen quepa entera */

    /* Centra la imagen dentro del botón */
}

.boton-rojo:hover {
    background-color: #9f1d22;
    /* Cambio de tono al pasar el ratón */
}

/* Links con color verde */
.link-verde {
    color: #6a8d73;
    text-decoration: none;
}

.link-verde:hover {
    text-decoration: underline;
}

/* Estilo de tarjetas destacadas con fondo claro */
.tarjeta-destacada {
    background-color: #fffaf5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);


}



span.raya1 {
    display: inline-block;
    background:
        url(raya2.png) no-repeat center bottom;
    background-size: auto;
    background-size: 100% 9px;
    padding-bottom: 10px;
}

/* From Uiverse.io by catraco */
.btn-class-name {
    --primary: 255, 90, 120;
    --secondary: 150, 50, 60;
    width: 60px;
    height: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    outline: 10px solid rgb(var(--primary), .5);
    border-radius: 100%;
    position: relative;
    transition: .3s;
}

.btn-class-name .back {
    background: rgb(var(--secondary));
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.btn-class-name .front {
    background: linear-gradient(0deg, rgba(var(--primary), .6) 20%, rgba(var(--primary)) 50%);
    box-shadow: 0 .5em 1em -0.2em rgba(var(--secondary), .5);
    border-radius: 100%;
    position: absolute;
    border: 1px solid rgb(var(--secondary));
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: inherit;
    transform: translateY(-15%);
    transition: .15s;
    color: rgb(var(--secondary));
}

.btn-class-name:active .front {
    transform: translateY(0%);
    box-shadow: 0 0;
}