input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type="number"] {
    -moz-appearance: textfield;
}

/*===========SECC 1===========*/
.secc1{
    background-image: url('../img/contacto/banner.jpg');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 610px;

    margin-top: -115px;
}
.secc1-div{
    height: 100%;
}
.secc1-div-int{

    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.secc1-div-int h1{
    font-weight: bold;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black;
}
/*===========SECC 2===========*/
.secc2{
    margin-top: 6rem;
    margin-bottom: 12rem;
    background-color: #096F59;
    border-radius: 0 35rem 35rem 0;
    max-width: 1100px;
    margin-right: auto;
}
.secc2-div{
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 750px;
    margin-left: 50px;
    gap: 20px;

    display: flex;
    flex-direction: column;
}
.secc2-div p{
    color: white;
}
.secc2-div-titulo{
    font-weight: bold;
    color: white;
    font-size: 3rem;
    max-width: 520px;
}
/*------------*/
.secc2-div-int{
    display: flex;
    gap: 40px;
    max-width: 500px;
    position: relative;
}
.secc2-div-int-formulario{
    display: flex;
    flex-direction: column;
}
.formulario{
    width: 40vw;
}
.form-content{
    display: flex;
    flex-direction: column;
    gap: 20px;

    position: relative;
    top: 80px;
}
.form-control{
    background-color: transparent;
    border-radius: 0;
    padding: 1rem 2rem;
    color: white;
}
.form-control:focus {
    color: white;
    background-color: transparent;
    border-color: white;
    box-shadow: 0 0 0 5px white;
}
.form-control::placeholder{
    color: white;
}
.enviar-form{
    display: flex;
    justify-content: flex-end;

}
.btn-verProducto{
    padding: 2rem 3.5rem;
    background-color: #00522c;
    border: none;
    color: white;
}
/*-------------*/
.div-mapa{
    position: absolute;
    top: 70px;
    left: calc(35vw + 120px);
}

.div-mapa iframe{
    width: 50vw;
    height: 50vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 2rem;
}
.mapa-swap{
    display: none;
}


/*===========RESPONSIVE===========*/
@media(max-width: 1440px){
    .secc2-div{
        margin-left: 0;
    }
}
@media(max-width: 1200px){
    .secc2{
        background-size: cover;
    }
}
@media(max-width: 1090px){
    .secc1{
        margin-top: -160px;
    }
}
@media(max-width: 992px){
    /*----------*/
    .secc2-div-titulo{
        font-size: calc(1.375rem + 1.5vw);
    }
    .secc2{
        margin-top: 160px;
        margin-bottom: 0;
    }
    .secc2-div{
        max-width: 100%;
    }
    /*----------------*/
    .secc2-div-int{
        flex-direction: column;
        max-width: 100%;
    }
    .form-content{
        position: unset;
        margin-top: 40px;
    }
    .formulario{
        width: 100%;
    }
    .div-mapa{
        position: unset;
        display: none;
    }
    .mapa-swap{
        display: block;
    }
    .mapa-swap iframe{
        width: 100%;
    }
}
@media(max-width: 768px){
    /*-----------*/
    .secc2{
        border-radius: 0;
    }
    .secc2-div{
        margin-left: auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .secc2-div-titulo{
        text-align: center;
    }
    .secc2-div-int{
        flex-direction: column;
    }
}