:root{
    --negro:#242424;

    
    --segundo-color:#e4cb86;
    --tercer-color: white;
    --color-section:#333;
    --font-color:#bbb9b9;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: var(--tercer-color);
}
html{
    font-size: 52.6%;
    /* font-family: 'Montserrat', sans-serif; */
   font-family: monospace;
}
body{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    background-color:var(--negro) ;
}
.contenedor-datos-cursos{
    margin-top: 2rem;
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    font-size: 4rem;
    color: var(--segundo-color);
    font-family: 'Cinzel', serif;
}
.datos-proyectos{
    width: 100%;
    height: auto;
    margin:2rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.proyecto{
    background-color: var(--color-section);
    width: 100%;
    height: auto;
    border-radius: .5rem;
    padding: 1rem;
    margin-top: 2rem;
}
.proyecto-contenedor__img{
    width: 100%;
    height: 18rem;
}
.proyecto-img{
    width: 100%;
    height: 100%;
}
.proyecto-informacion{
    margin-top: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    height: auto;
}
h4{
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.proyecto-links{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 4rem;
}
.link-proyecto{
    text-align: center;
    width: auto;
    padding: 1rem;
    background-color: var(--segundo-color);
    color: var(--tercer-color);
    border-radius: .5rem;
}
.link-proyecto:focus{
    opacity: .7;
}
.proyecto-texto{
    font-size: 1.6rem;
    font-weight: 300;
}
ul{
    width: 100%;
    height: auto;
    padding-left:3rem;
    font-size: 1.4rem;
}
a{
    text-decoration: none;
    color: var(--segundo-color);
}
/* -------- botton*/
.botton-flotante{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width:4rem;
    height:4rem;
    border-radius: 50%;
    z-index: 1;
}
.botton-flotante-link{
    display: flex;
    font-weight: 500;
    font-size: 2rem;
    color: var(--tercer-color);
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    background-color: var(--segundo-color);
    box-shadow: 0px 0px 18px 0px rgba(254,139,72,1);
    display: flex;
    align-items: center;
}
.user-boton{
    display: flex;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    padding-bottom: 0rem
}
.casa{
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
}
/* ===== TARJETA BASE MEJORADA ===== */
.proyecto{
    position: relative;
    overflow: visible;
    transition: 
        transform .35s ease,
        box-shadow .35s ease;
    
    /* sombra base muy sutil (se ve pro aun sin hover) */
    box-shadow: 0 8px 18px rgba(0,0,0,.35);
}

/* Estado base con transición suave */
.proyecto{
    position: relative;
    overflow: visible;
    transition: box-shadow .35s ease, border-color .35s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,.35); /* sombra base sutil */
    border: 1px solid transparent;
}

/* Hover: SOLO brillo leve, sin moverse */
.proyecto:hover{
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.20),
        0 0 18px 6px rgba(255,255,255,0.18),
        0 10px 22px rgba(0,0,0,.45);
    border-color: rgba(255,255,255,0.25);
}

