    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
        body {
            font-family: 'Raleway', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        /* Menú */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #014421; /* Verde Bosque */
    padding: 15px 20px;
    color: white;
    font-family: 'Raleway', sans-serif;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Ajuste del menú en desktop */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Opciones de acceso */
.auth {
    display: flex;
    gap: 15px;
}

.auth a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 4px;
    background: white;
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #014421;
        text-align: center;
        padding: 15px 0;
    }

    .menu a {
        padding: 15px;
        display: block;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .auth {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}
main {
    margin-top: 90px;
}

    .highlight {
    color: #FF8C00; /* Acento naranja en títulos o enlaces */
}
        .hero, #elegirnos {
            height: 100vh;
        }
        .hero, #elegirnos {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        }
        .hero {
            background: url('https://envioverde.com/background2.jpg') no-repeat center center/cover;
        }
        #elegirnos {
                background: url(https://envioverde.com/background3.jpg) no-repeat center center / cover;
    padding-left: 0;
    padding-right: 0px;
        }
        .cta {
            width:100%;
            padding-top: 3.5rem;
            padding-bottom: 3.5rem;
            background-color:#2f4f4f3b;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin: 0;
        }
        .hero p {
            font-size: 1.5rem;
        }

        .btn {
            background: #FF8C00; /* Naranja Mandarina */
            color: white;
            padding: 15px 30px;
            font-size: 1.2rem;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 20px;
            display: inline-block;
        }
        .btn:hover {
            background: #E07B00; /* Naranja Intenso */
        }
        .section {
            background: #E8F5E9; /* Verde Pastel */
            padding: 80px 20px;
            text-align: center;
        }
        .section h2 {
            font-size: 2.5rem;
            color: #fff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        }
        .section p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: auto;
        }
        .section img {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
            border-radius: 10px;
        }
        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 20px;
        }