.contacto-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    text-align: center;
    color: white;
}

.contacto-landing {
    padding-top: 33vh;
    font-size: 4em;
}

.tel-font {
    font-size: 3em;
}

.email-font {
    font-size: 2em;
}

.telmail a {
    text-decoration: none;
}

.map-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    text-align: center;
    color: white;
}

.dir-map {
    padding-top: 100px;
    padding-bottom: 100px;
}

.gmap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    color: white;
}

.map {
    width: 100%;
    height: 100vh;
}

.form-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    color: white;
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-social {
    min-width: 100vh;
}
.icon-container {
    display: flex;
    gap: 10px;
    height: 3em;
}
.icon-container a {
    color: white; /* Cambiar a blanco si fondo negro */
    text-decoration: none;
    font-size: 2rem;
    transition: color 0.3s;
}
.icon-container a:hover {
    color: #ed028c; /* Color al pasar el mouse */
}

.form-section .thanks {
    letter-spacing: 0.07em;
    font-size: 2.5em;
    margin-block-end: 0;
}

.form-section .thanks-message {
    margin-block-start: 0;
    font-size: 1.5em;
}

.form-contact {
    margin-top: 20px;
    margin-right: 5%;
    padding-top: 20px;
    min-width: 90vh;
    background-color: transparent;
}
.form-group {
    margin-bottom: 40px;
    position: relative;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 2px solid #fff;
    background: transparent;
    color: #fff;
}
.form-group textarea {
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #ed028c;
}
.form-group label {
    display: block;
    margin-top: 5px;
    color: #ddd;
    position: absolute;
    bottom: -20px; /* Mueve la etiqueta hacia abajo */
    left: 0;
    font-size: 14px;
    padding: 0 5px; /* Espacio alrededor del texto */
}

.form-group button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #ed028c;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.form-group button:hover {
    background-color: #ed028c;
}

@media(max-width: 976px) {

    .form-section {
        flex-direction: column;
    }
    .contacto-landing {
        padding-top: 25vh;
        font-size: 3em;
    }

    .telmail {
        padding-bottom: 35vh;
    }

    .tel-font {
        font-size: 2em;
    }

    .email-font {
        font-size: 1.5em;
    }

    .dir-map {
        padding-top: 0px;
        padding-bottom: 100px;
    }

    .form-section .thanks {
        font-size: 2em;
    }
    
    .form-section .thanks-message {
        font-size: 1em;
    }

    .text-social {
        min-width: 0;
    }

    .form-contact {
        min-width: 0;
    }
}