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

body {
    background-image: url(./IMG/fondoform.jpeg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    margin: 0; 
    overflow-x: hidden;
}

/* Estilos de enlaces */
a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover {
    color: orange;
}

/* HEADER MENU */
/* HEADER MENU */
.nav {
    width: 100%;
    background: #9DC3E6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: fixed;
    transition: all 0.5s ease;
    border-bottom: 2px solid #f4f6f9;
    z-index: 10; /* Asegura que el nav esté encima */
}

.menu {
    display: flex;
}

.menu li {
    list-style: none;
    margin: 10px;
}

.menu li a {
    color: #101010;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s ease;
}

.menu li a:hover {
    padding: 5px 10px;
    background-color: #101010;
    color: #ddd;
    border-radius: 15px;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #101010;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on the height of your header */
        right: 15px;
        background: #101010;
        width: 100%; /* Adjust the width as needed */
        padding: 10px;
        border-radius: 5px;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
        width: 80px;
        height: 40px;
    }

    .nav {
        justify-content: space-between;
    }

    .nav {
        width: 100%;
        background: #101010;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        position: fixed;
        transition: all 0.5s ease;
    }
    .nav.logo img{
        width: 200px;
        height: 50px;
    }
}

/* Show menu  */
.menu.active {
    display: flex;
}

/* menu scroll*/
.scrol{
    height: 100px;
}



/* FORMULARIO */
.form-content {
    background: linear-gradient(
        50deg,
        rgba(40, 42, 55, 1) 50%,
        rgba(40, 42, 55, 0.7) 50%
    ), url(./IMG/form.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    width: 1000px;
    border-radius: 25px;
    margin: 0 auto; /* Centra horizontalmente */
    margin-bottom: 40px;
}

.form-content h2{
    color: #f4f6f9;
    font-size: 40PX;
    margin-bottom: 25px;
}

form{
    display: flex;
    flex-direction: column;
    width: 50%;
}

label{
    font-size: 17px;
    color: #959aab;
    margin-bottom: 10px;
}

input , textarea{
    padding: 17px 14px;
    background-color: #333646;
    border: 0;
    font-size: 15px;
    color: #f4f6f9;
    margin-bottom: 20px;
    border-radius: 10px;
}

:focus{
    outline: 1px solid #1E92E9;
}

.btn{
    background-color: #1E92E9;
    width: 150px;
    align-self: flex-end;
    cursor: pointer;
}

.btn:hover{
    background-color: #219bf9;
}

@media (max-width:991px) {
    .form-content{
        width: 100%;
        
    }
    form{
        width: 100%;
    }
    .footerr{
        padding: 100px;
        background: #171717;
        height: 600px;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        margin-bottom: 0;
    }
    
}

.footerr i{
    font-size: 2rem;
    padding: 1rem;
}

/* FOOTER */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer i{
    font-size: 2rem;
    padding: 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    border-bottom: 2px solid #fff;
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ddd;
}

.footer-section a img {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.footer-section a img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 10px;
}

       /* BOTON WASAP */
       .float-wa{
        position:fixed;
        width:60px;
        height:60px;
        bottom:40px;
        right:40px;
        background-color:#25d366;
        color:#FFF;
        border-radius:50px;
        text-align:center;
        font-size:30px;
        z-index:100;
    }