/* ============================= */
/* FUENTE PERSONAL */
/* ============================= */

@font-face {
    font-family: "personal";
    src: url("../fonts/Quicksand-VariableFont_wght.ttf") format("truetype");
}

/* Aplicar fuente a toda la web */
body {
    font-family: "personal", sans-serif;
    margin: 0;
    padding: 0;
}


/* ============================= */
/* MARCA DE AGUA */
/* ============================= */

.marca-agua {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 8rem;
    font-weight: 700;

    

    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}


/* ============================= */
/* HERO */
/* ============================= */

.hero {
    position: relative;
}

/* Contenido del hero por encima de la marca */
.hero-contenido {
    position: relative;
    z-index: 1;
}


/* ============================= */
/* TIPOGRAFÍA HERO (base) */
/* ============================= */

.hero-titulo {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-subtitulo {
    font-size: 1.5rem;
    color: #7d5a69;
}

.hero-texto {
    max-width: 500px;
    color: #666;
}


/* ============================= */
/* BOTONES */
/* ============================= */

.btn-propio {
    background: linear-gradient(45deg, #e8a9bf, #d4af37);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    border: none;
    transition: 0.3s;
}

.btn-propio:hover {
    transform: translateY(-2px);
}


/* ============================= */
/* PROYECTOS */
/* ============================= */

.proyecto-card {
    padding: 25px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.proyecto-card:hover {
    transform: translateY(-5px);
}