/* ===========================
   SECCIÓN CONTACTO
=========================== */

.seccion-contacto {
    padding: 50px 20px;
    background-color: #d1d5db;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* TÍTULO */

.seccion-contacto h1 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 30px;
    font-weight: 800;
    text-align: center;
}


/* CONTENEDOR DE TARJETAS */

.contenedor-contacto {

    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;

}


/* TARJETAS */

.tarjeta-contacto {

    background: white;
    padding: 30px;
    border-radius: 20px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    width: 100%;
    max-width: 500px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}


/* EFECTO AL PASAR MOUSE */

.tarjeta-contacto:hover {

    transform: translateY(-15px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);

}


/* TITULOS DE TARJETAS */

.tarjeta-contacto h3 {

    color: #0f172a;

    border-bottom: 2px solid #f59e0b;

    padding-bottom: 15px;

    margin-bottom: 20px;

}


/* LINKS */

.tarjeta-contacto a {

    color: rgb(2,1,0);

    text-decoration: none;

    font-weight: bold;

}


.tarjeta-contacto a:hover {

    color: #ff7b00;

    text-decoration: none;

}


/* INFORMACIÓN */

.info-item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;

    color: #334155;

    font-size: 0.9em;

}


.info-item img {

    width: 30px;

    height: 30px;

}



/* ===========================
   FORMULARIO
=========================== */


input, textarea {

    width: 100%;

    padding: 10px;

    margin: 10px 0;

    border: 1px solid #ccc;

    border-radius: 5px;

    box-sizing: border-box;

    font-family: inherit;

}



textarea {

    resize: none;

    height: 120px;

}



.btn-enviar {

    background-color: #f97316;

    color: white;

    border: none;

    padding: 12px;

    width: 100%;

    font-weight: bold;

    cursor: pointer;

    border-radius: 5px;

}



.btn-enviar:hover {

    background-color: #ea580c;

}



/* ===========================
   MAPA
=========================== */


.mapa {

    width: 100%;

    display: flex;

    justify-content: center;

    margin-top: 15px;

}



.mapa iframe {

    width: 280px;

    height: 180px;

    border: 0;

    border-radius: 15px;

}



/* FOOTER */

footer {

    margin-top: auto;

}



/* ===========================
   RESPONSIVE CELULARES
=========================== */


@media(max-width:768px){


    .seccion-contacto {

        padding: 30px 15px;

    }


    .seccion-contacto h1 {

        font-size: 2rem;

        margin-bottom: 20px;

    }



    .contenedor-contacto {

        flex-direction: column;

        gap: 20px;

        width: 100%;

    }



    .tarjeta-contacto {

        max-width: 100%;

        padding: 20px;

    }



    .tarjeta-contacto:hover {

        transform: none;

    }



    .info-item {

        font-size: 14px;

        gap: 10px;

    }



    .info-item img {

        width: 25px;

        height: 25px;

    }



    .mapa iframe {

        width: 100%;

        height: 220px;

    }


}