.containerC{
    display: flex;
    justify-content: center;
}

.ubicacion{
    width: 40%;
    height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
}

.ubicacion h1{
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 30px;
    font-weight: bold;
    color: #593DD3;
}

.ubicacion p{
    font-size: 20px;
    width: 65%;
}

.contacto{
    display: grid;
    justify-content: center;
}

.contacto h1{
    margin: 2em 0 1em 0;
    text-align: center;
    font-size: 25px;
}

.titleContact{
    background-color: rgb(50, 177, 50);
    color: white;
    padding: 2em;
    background-image: url(../img/icons.png);
    background-size: cover;
}

.contacto h2{
    margin-bottom: 1em;
    text-align: center;
    color: lightgray;
    font-size: 15px;
}

.contacto h3{
    text-align: center;
    font-size: 20px;
}

.nombreContacto p, .correoContacto p, .telContacto p, .comentContacto p{
    margin: 1em 0 .5em 5px;
    color: #593DD3;
}

.nombreContacto input, .correoContacto input, .telContacto input{
    font-family: 'Martian Mono', monospace;
    color:black;
    border: 2px black solid;
    width: 100%;
    height: 45px;
    padding-left: 10px;
}

.comentContacto textarea{
    font-family: 'Martian Mono', monospace;
    color: black;
    border: 2px black solid;
    width: 100%;
    padding-left: 10px;
    resize: vertical;
}

.btnEnviar{
    justify-content: center;
    text-align: center;
    margin: 2em 0;
}

.enviar{
    width: 350px;
    height: 45px;
    text-align: center;
    border: 2px #593DD3 solid;
    background-color: transparent;
    color: #593DD3;
    cursor: pointer;
    box-shadow: 5px 5px 5px rgba(143, 218, 148, 0.5);
}

.enviar:hover{
    background-color: lightgray;
    color: black;
}

.enviar:active{
    box-shadow: none;
    background-color: transparent;
}

.redes {
    width: 100%;
    height: 35%;
    margin-bottom: 2em
}

.redes h1{
    color: black;
    font-weight: 400;
    margin-top: 5px;
}

.redes img {
    width: 80px;
}

.redes_iconos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15em;
    padding: 2em 0;
}

.infoCon {
    margin-left: 5px; /* Agrega un margen a la izquierda de los textos */
}

.redes a {
    text-decoration: none;
    color: black;
}

.redes h1 {
    font-size: 15px;
}

dialog{
    border: 0;
    border-radius: 15px;
    width: 400px;
    text-align: center;
    z-index: 9999;
}

dialog button{
    width: 100px;
    margin: 2em 2em;
    height: 35px;
    width: 50%;
    background-color: transparent;
    border: 2px #7DBB29 solid;
    color: #7DBB29;
    cursor: pointer;
}

dialog::backdrop{
    background-color: black;
    opacity: 55%;
}

@media screen  and (max-width:1000px){
    .containerC{
        display: block;
        padding: 0 3em;
    }

    .ubicacion{
        width: 100%;
        display: block;
        justify-content: center;
        align-items: center;
        text-align: center;
        align-self: center;
        height: auto;
    }

    .ubicacion iframe{
        width: 100%;
    }

    .ubicacion p{
        width: 100%;
    }

    .redes_iconos{
        justify-content: center;
        gap: 7em;
        margin-left: 2em;
    }

    .redes{
        margin-bottom: 0;
    }

    .contacto{
        margin-top: 0;
    }
}
