* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

.half-circle {
    width: 100%;
    height: 450px;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    background: linear-gradient(white, #86c64d);
}

.barra-superior {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.icono-derecha {
    height: 100%;
    left: 5%;
}

.menu-button {
    display: none;
    background: none;
    font-size: 24px;
    border: none;
    cursor: pointer;
    z-index: 11;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s;
}

.nav a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.nav a.special {
    background-color: black;
    color: white;
    border-radius: 20px;
}

.imagen-superpuesta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    /* centrar horizontalmente y subir un poco la imagen */
    width: 300px;
    /* ajusta según el tamaño deseado */
    z-index: 2;
}

.contenedor-imagen-superpuesta {
    position: absolute;
    text-align: center;
    color: #0D4C1B;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -30%);
    /* centrar horizontalmente y subir un poco la imagen */
    width: 80%;
    /* ajusta según el tamaño deseado */
    z-index: 2;
}

.butto-message {
    position: absolute;
    text-align: center;
    color: #0D4C1B;
    padding-top: 5%;
    left: 50%;
    transform: translate(-50%, -30%);
    /* centrar horizontalmente y subir un poco la imagen */
    width: 80%;
    /* ajusta según el tamaño deseado */
    z-index: 2;
}