html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

.TituloMenu {
    text-align: center;
    font-family: "Passion One", sans-serif;
    font-size: 60px;
    margin-bottom: 10px;
}

.Subtitulo {
    text-align: center;
    font-size: 20px;
    margin-top: 0px;
}

.Carrusel {
    width: 85%;
    margin: auto;
    position: relative;
}

#CarruselImagen {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    transition: outline 0.1s ease;
}

#CarruselImagen:hover {
    cursor: pointer;
    outline: 4px solid rgb(174, 205, 184);
}

.Puntos {
    text-align: center;
    margin-top: 10px;
}

.Punto {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    display: inline-block;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.Punto.Activado {
    background-color: #333;
}

.DescripcionWeb {
    font-family: "Roboto", sans-serif;
    margin-left: 40px;
    margin-right: 40px;
    font-size: 22px;
}

.ImagenLanding {
    width: 85%;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    
}

.LogoEgiteko {
    width: 50%;
    padding: 15px;
    display: block;
    margin: 0 auto;
}

.Subtitulo {
    align-items: center;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
}

.contenedor {
    display: flex;
    width: 100%;
    align-items: stretch;
    min-height: 100vh;
}

.MitadIzquierda {
    width: 50%;
    background-color: #35CB83;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
    box-sizing: border-box;
}

.MitadDerecha {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
    box-sizing: border-box;
}

.BotonBarraMenu {
    all: unset;
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    border-radius: 30px;
    min-width: 220px;
    max-width: 340px;
    text-align: center;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.MitadDerecha .LandingGrupo {
    list-style: none;
    margin-bottom: 18px;
}
.MitadDerecha .LandingGrupo .TextoLanding {
    margin-bottom: 8px;
    font-weight: 700;
}

/* ============== Responsive ============== */
/* En móvil ocultamos la mitad izquierda (descripción larga + ilustración) y
   dejamos solo el logo + botones de la mitad derecha, ocupando toda la
   pantalla con fondo verde y todo centrado. */
@media (max-width: 850px) {
    .contenedor {
        min-height: 100vh;
    }
    .MitadIzquierda {
        display: none;
    }
    .MitadDerecha {
        width: 100%;
        min-height: 100vh;
        background-color: #35CB83;
        padding: 30px 20px;
        box-sizing: border-box;
        gap: 4px;
    }
    .LogoEgiteko {
        width: 60%;
        max-width: 260px;
        padding: 10px;
        margin: 0 auto 8px auto;
    }
    .Subtitulo {
        color: #00330F;
        font-size: 18px;
        padding: 0 10px;
        margin-bottom: 16px;
    }
    .MitadDerecha hr {
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
        width: 70%;
        margin: 6px auto 12px auto;
    }
    .MitadDerecha ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .TextoLanding {
        font-size: 17px;
        margin: 10px 0 4px 0;
        color: #00330F;
    }
    .LiBarra {
        width: 100%;
        max-width: 320px;
        margin-bottom: 6px;
        display: flex;
        justify-content: center;
    }
    .BotonBarraMenu {
        background-color: white;
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        border: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
        box-sizing: border-box;
    }
    .BotonBarraMenu:hover {
        background-color: #D3FFEF;
        transform: translateY(-1px);
    }
}

/* Móvil pequeño: aún más compacto */
@media (max-width: 480px) {
    .LogoEgiteko {
        width: 65%;
        max-width: 200px;
    }
    .Subtitulo {
        font-size: 16px;
    }
    .TextoLanding {
        font-size: 15px;
    }
    .BotonBarraMenu {
        font-size: 15px;
        padding: 11px 16px;
    }
}

.BotonBarraMenu:hover {
    background-color: #0BA243;
    border-radius: 30px;
}

.TextoLanding {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 22px;
    font-family: "Roboto", sans-serif;
}