* {

    padding: 0;
    margin: 0;
    text-decoration: none;
    /*list-style: none;*/
    box-sizing: border-box;
    font-family: 'Montserrat';
}


body {


}

.todo{

    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #eae5e2;
}
.contportadanosotros {
    margin-top: 150px;
    position: relative;
    width: 100%;
    
    /* Altura fija del contenedor */
    overflow: hidden;
    /* Para recortar la imagen si es más grande que el contenedor */
}

.contportadanosotros img {
    width: 100%;
    /* Ancho automático para mantener la proporción de aspecto */
    /* Altura del contenedor, la imagen ocupará toda la altura */
    object-fit: cover;
    /* Ajusta la imagen para llenar el contenedor manteniendo la proporción de aspecto */
}

.titulo1 {
    position: absolute;
    top: 50%; /* Centra verticalmente */
    left: 50%; /* Centra horizontalmente */
    transform: translate(-50%, -50%); /* Corrige la posición para centrar completamente */
    color: white;
    font-size: 60px;
    font-weight: bold;
    border-radius: 10px;

    padding: 10px 20px; /* Espaciado interno */
}


.contpropiedades{


    padding-top: 50px;
    padding-bottom: 50px;
  /*  border: 1px dashed red;*/
    width: 100%;
    max-width: 1200px;
}


.contdestacadas1 {
    background-color: #eae5e2;
    padding-top: 60px;
    padding-bottom: 70px;
    display: flex;
    justify-content: center;
 /*   border: 1px dashed red;*/
    width: 100%;
    max-width: 1200px;
    /* Para asegurarse de que el contenido no se desborde */
    flex-direction: column;
    align-items: center;
}


.titulos{

    color: white;
    display: flex;
    height: 100%;
        font-size: 50px;
    align-items: center;
    text-transform: uppercase;
}
.conttitu {
    /*   border: 1px dashed red;*/
       position: absolute;
       width: 100%;
       height: 100%;
       max-width: 1200px;
       left: 0;
       right: 0;
       margin-left: auto;
       margin-right: auto;
       
   }

.contenedorcosas{

    width: 98%;
    max-width: 1200px;
    /*border: 1px dashed blue;*/
    background-color:#0b2b44;
    padding: 30px;
    border-radius: 15px;
    color: white;
    display: grid;
    /*grid-template-columns: 33% 33% 33%;*/
    grid-template-areas: "contacto contacto contacto"
        "telefonocont correocont horariocont";
        align-items: baseline;
}
.contacto{
 /*   border: 1px dashed red;*/
    grid-area: contacto;
    font-size: 35px;
    display: flex;
    font-weight: bold;
    justify-content: center;
    padding-bottom: 20px;
    text-transform: uppercase;
}
.telefonocont{

    grid-area: telefonocont;
    display: flex;
    font-weight: bold;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 50px;
    font-size: 25px;
}

.correocont{

    grid-area: correocont;
    display: flex;
    font-weight: bold;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 50px;
    font-size: 25px;
}

.horariocont{

    grid-area: horariocont;
    display: flex;
    font-weight: bold;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 50px;
    font-size: 25px;
}

.inocoscont{

    width: 100px;
}

.contescribenos{
    width: 100%;
    max-width: 1200px;
  
    
    padding: 30px;
    border-radius: 15px;
    color:#0b2b44;
  /*  display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "contcelu escribir"
                         "contboton contboton";
       
      */ 
      display: flex;

}
.contcelu img{
    width: 80%;
}
.escribenoss{

    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
}
.contcelu{

    grid-area: contcelu;
    width: 50%;
}

.escribir{
    grid-area: escribir;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 598px;
    width: 50%;
}

.inputcontacto{
    background-color: #0b2b44;
    color: white;
    font-weight: bold;
    height: 50px;
    border: none;
    border-radius: 12px;
    justify-content: center;
    text-align: center;
    font-size: 25px;
  
}

.inputcontactot {
    background-color: #0b2b44;
    color: white;
    height: 300px;
    border: none;
    border-radius: 12px;
    font-size: 25px;
    font-weight: bold;
    text-align: center; /* Centra el texto del textarea */
}

/* Centra el placeholder para navegadores modernos */
.inputcontactot::placeholder {
    text-align: center;
}

/* Centra el placeholder para navegadores antiguos (Internet Explorer) */
.inputcontactot:-ms-input-placeholder {
    text-align: center;
}

.contboton{

    display: flex;
    justify-content: end;
    grid-area: contboton;
    padding-top: 15px;
}
.enviar{
    background-color: #0b2b44;
    color: white;
    height: 50px;
    width: 200px;
    border: none;
    border-radius: 12px;
    font-size: 25px;


}




@media (max-width: 1248px) {

    .contenedorcosas{
        display: flex;
        align-items: center;
        flex-direction: column;
        height: 650px;
        justify-content: space-between;

    }




}


@media (max-width: 694px) {

    .contescribenos{
        display: flex;
        flex-direction: column;
    }

    .contcelu{
        width: 100%;
    }
    .contcelu img {
        width: 100%;
    }

    .escribir{

        width: 100%;
    }
    .titulos{
        font-size: 36px;
    }
}