/* Reset y configuraciÃ³n base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    min-height: 100%;
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden;
}

/* Fondo de pantalla completa */
.fullscreen-bg {
    background-image: url('../images/piso-para-invertir-3.webp'); /* Ajusta la ruta si es necesario */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px 40px 60px;
    background-color: transparent;
}
.logo img {
    height: 50px;
    width: auto;
}
nav ul {
    list-style: none;
}
nav ul li {
    display: inline;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 20px;
    transition: color 0.3s;
    font-family: 'Satoshi', sans-serif;
}
nav ul li a:hover {
    color: #ddd;
}

/* Contenido principal */
.main-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 100px 100px;
    color: white;
    text-align: left;
}
.text-content {
    max-width: 50%;
    padding: 2rem;
    background-color: rgba(0,0,0, 0.5);
    border-radius: 30px;
    backdrop-filter: blur(40px);
    color: white;
}
.text-content .logo {
    margin-bottom: 1rem;
}
h1 {
    font-size: 3.1em;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 10px;
}
p {
    font-size: 1.2em;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 20px; /* Espacio para el botÃ³n */
}

/* Estilo del botÃ³n */
.access-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid white;
    border-radius: 250px; /* Bordes redondeados */
    color: white;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.2em;
    transition: background-color 0.3s, color 0.3s;
}
.access-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Fondo blanco translÃºcido al pasar el ratÃ³n */
    color: white;
}

.title {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.title h1 {
    text-align: left;
}

.title h2 {
    text-align: left;
    opacity: 0.8;
}

.logo-landing {
    height: 8rem;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 900px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .logo-landing {
        height: 60px;
    }
    nav ul li a {
        font-size: 1em;
    }
    .main-content {
        justify-content: center;
        text-align: center;
        padding: 20px;
    }
    .text-content {
        max-width: 100%;
    }
    h1 {
        font-size: 3em;
    }
    p {
        font-size: 1.2em;
    }
    .access-button {
        font-size: 1em;
        padding: 8px 16px;
    }
}

@media (max-width: 500px) {
    .main-content {
        padding: 0 20px 20px;
    }
    .text-content {
        padding: 1rem;
    }
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1.2em;
    }
}