@font-face {
  font-family: 'frase multilenguaje'; /* Dale un nombre a tu fuente */
  src: url('theskinny-webfont.woff2') format('woff2'); /* Usa url() para la ruta del archivo */
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'bit-03urbanfluxerregular';
    src: url('bit03-webfont.woff2') format('woff2'),
         url('bit03-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

:root {
    --primary-color: #0E7E7B;
    --secondary-color: #ffffff;
    --text-color: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.color-section {
    width: 50%;
    background-color: var(--primary-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo {
    width: 80%;
    height: auto;
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.text-section {
    width: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-text {
    /* Convierte el h1 en un contenedor flexible */
    display: flex;
    /* Apila los elementos de forma vertical */
    flex-direction: column;
    /* Ajusta la separación entre las dos palabras */
    gap: 20px; /* Puedes cambiar este valor por el que desees, por ejemplo 5px, 20px, etc. */

    /* Mantén los estilos generales del texto */
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: -0.05em;
    line-height: 0.075;
    width: 100%;

    /* Propiedad para alinear todo el bloque de texto si lo necesitas */
    /*align-items: flex-end;*/ /* Esto centrará las palabras una encima de la otra */
}

/* Ahora puedes aplicar estilos a cada palabra de forma independiente */
.word-really {
    /* Ejemplo: cambiar el color o el tamaño solo de esta palabra */
    color: #E85207;
    align-self: flex-end;
}

.word-urban {
    /* Ejemplo: cambiar el color o el tamaño solo de esta palabra */
    color: #0E7E7B;
    align-self: flex-start;    
}

.phrase {
    /* Ejemplo: cambiar el color o el tamaño solo de esta palabra */
    color: #000000;
    font-size: 10px;
    font-family: sans-serif;
    font-weight: 300;
    /* Añade las reglas de espaciado que solo afectarán a esta frase */
    line-height: 1.0;
    letter-spacing: 0.5em; /* Un valor positivo para separar las letras */
    /* === NUEVO: Extender y alinear la frase === */
    width: 100%; /* Haz que ocupe todo el ancho disponible */
    text-align: center; /* Centra el texto dentro de ese ancho */
    /* o si quieres que se alinee con el borde izquierdo de "URBANO.": */
    /* text-align: left; */
}

/*menu hamburguesa*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Animación a 'X' cuando el menú está activo */
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(13.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-13.5px) rotate(-45deg);
}

/* Estilos del menú de navegación */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: transparent; /* Fondo transparente */
    z-index: 999;
    padding-top: 100px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.menu.active {
    transform: translateX(0);
}

/* Estilos generales para los enlaces del menú */
.menu ul li a {
    text-decoration: none;
    color: var(--text-color); 
    font-size: 1.2rem;
    display: block;
}

/* Estilo para el primer enlace */
.clase-1 a {
    font-family: 'bit-03urbanfluxerregular', sans-serif;
    /* letter-spacing: 1.00em; */
}

/* Estilo para el segundo enlace */
.clase-2 a {
    font-family: 'bit-03urbanfluxerregular', sans-serif;
}

.menu ul li {
    padding: 15px 20px;
}

.menu ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: block;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*menu hamburguesa*/


/*media queries*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* Media query para pantallas más pequeñas (máx. 768px) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        min-height: auto;
    }

    .color-section, .text-section {
        width: 100%;
        height: 50vh;
        padding: 40px 0;
    }

    .main-text {
        align-items: center;
        font-size: 8vw;
        letter-spacing: -0.02em;
        line-height: 0.5;
        /* Nuevo valor para acercar "REALMENTE" y "URBANO" */
        gap: 0px; 
    }

    .word-really {
        align-self: flex-end;
        text-align: center;
    }

    .word-urban {
        align-self: flex-start;
        text-align: center;
    }

    .phrase {
        /* Nuevo valor para aumentar el tamaño de la frase */
        font-size: 3vw;
        /* Nuevo valor para el espaciado entre letras, si lo necesitas */
        letter-spacing: 0.1em;
        align-self: center;
        text-align: center;
    }
    
    .hamburger-menu {
        display: flex;
        position: fixed;
        left: 20px;
        top: 20px;
    }

    .menu {
        display: block;
        background-color: transparent;
    }

    .logo {
        width: 60%;
    }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*media queries*/