@font-face {
  font-family: 'frase multilenguaje';
  src: url('theskinny-webfont.woff2') format('woff2');
  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-x: hidden; /* Evita scroll horizontal */
}

.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: 84.40%;
    height: auto;
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    width: 100%; /* Aumentado a 90% para hacerlo más grande */
}

/* ------------------------------------------------------------- */
/* ESTILOS DEL MENÚ 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); /* Blanco, para contraste con el fondo oscuro */
    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; /* Color sólido para el menú */
    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 {
    list-style: none; /* Elimina los puntos de la lista */
    padding: 0;
}

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

.menu ul li a {
    text-decoration: none;
    color: var(--secondary-color); /* Color blanco para los enlaces */
    font-size: 1.2rem;
    display: block;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #E85207; /* Color naranja al pasar el ratón */
}

/* 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;
}
/* ------------------------------------------------------------- */
/* FIN DE ESTILOS DEL MENÚ HAMBURGUESA */
/* ------------------------------------------------------------- */
