/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    cursor: url('assets/cursor.png'), auto;
}

/* Cursor al pasar por elementos clicables */
a,
button,
.btn-logo,
input[type="submit"] {
    cursor: url('assets/cursor_hover.png') 0 0, pointer;
}

/* Cursor mientras haces click */
a:active,
button:active,
.btn-logo:active,
input[type="submit"]:active {
    cursor: url('assets/cursor_click.png') 0 0, pointer;
}

body {
    min-height: 100vh;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: system-ui, -apple-system, sans-serif;
    color: #ffffff;
    /* Centrado absoluto */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilo del botón del logo */
.btn-logo {
    margin-top: -150px;
    width: auto; /* Ajusta este tamaño según la escala de tu logo */
    height: auto;
    display: flex;    
    align-items: flex-start;
    justify-content: center;
    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: url('assets/cursor_hover.png') 0 0, pointer;
    text-decoration: none;
    overflow: hidden; /* Para que la imagen no se salga del circulo */
}

.btn-logo:active {
    cursor: url('assets/cursor_click.png') 0 0, pointer;
}

/* La imagen dentro del botón */
.btn-logo img {
    width: 700px; /* El logo ocupa el 80% del botón */
    height: auto;
    transition: transform 0.3s ease;
}

/* Efecto Hover (al pasar el ratón) */
.btn-logo:hover {
    transform: scale(1.05); /* Crece un poco */
}

.btn-logo:hover img {
    transform: scale(1.1); /* El logo crece ligeramente */
}
