@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

.contenido-contacto {
    padding: 0 0;
}

.contenido-seccion {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* FORMULARIOS */
.contact-form,.test-drive-form {
    padding: 2.5rem;
    height: 100%;
    background-color: #f0f3fa;
    border-bottom: 1px solid #dedede;
    border-top: 1px solid #dedede;
    color: #666;
    font-family: "Oswald", sans-serif;
}

.texto-suave {
    color: #6e6e6e;
    font-size: 15px;
    margin-bottom: 10px;
}
.form-title {
    font-size: 2rem;
    color: black;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    letter-spacing: 1px;
    font-family: "League Gothic", sans-serif;
}

.vehica-whats-app-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #04b347;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s ease-in-out all;
    font-family: "Oswald", sans-serif;
    margin: 20px 0;
}

.vehica-whats-app-button a {
    color: white;
    text-decoration: none;
}

.vehica-whats-app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-container iframe{
    border-radius: 20px;
    border: 0;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.info-card {
    background: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: "Oswald", sans-serif;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4605, #6e6e6e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
}

.footer-social-media ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-social-media a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff6600;
    display: flex;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    color: white;
    border: 2px solid transparent;
    transition: .3s ease;
}

.footer-social-media i {
    font-size:20px;
}

.footer-social-media a:hover {
    opacity: 0.8;
    transform: scale(1.1);
    color: black;
}

/* A dos columnas en pantallas grandes */
@media (min-width: 768px) {
    .contenido-seccion {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

@media (min-width: 600px) {
    .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
