.contenido-contacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 40px;
}

.contacto_link,
.contacto_direccion {
    background-color: #282e39;
    padding: 40px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid #2f3440;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contacto_link:hover,
.contacto_direccion:hover {
    transform: translateY(-5px);
}

.form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: white;
    /* Gold Accent */
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid #e4a101;
    /* Red Line */
    display: inline-block;
    padding-bottom: 5px;
}

.contenido-contacto p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: white;
    margin-bottom: 20px;
}

.contenido-contacto a {
    color: #e10600;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contenido-contacto a:hover {
    color: white;
}

/* Redes Sociales */
.footer-social-media {
    margin-top: 30px;
}

.footer-social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-social-media ul li a {
    width: 50px;
    height: 50px;
    background-color: #3a414e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-media ul li a:hover {
    background-color: #ff6600;
    transform: scale(1.1);
}

/* WhatsApp Button */
.vehica-whats-app-button {
    margin: 25px 0;
}

.vehica-whats-app-button a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25d366;
    /* WhatsApp Green */
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.vehica-whats-app-button a:hover {
    background-color: #128c7e;
    color: white;
}

/* Mapa */
.map-container {
    width: 100%;
    height: 350px;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #3a414e;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 992px) {
    .contenido-contacto {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .form-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {

    .contacto_link,
    .contacto_direccion {
        padding: 25px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .map-container {
        height: 250px;
    }
}

/* ==================== INFO CARDS ==================== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 40px;
}

.info-card {
    background-color: #282e39;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    border: 1px solid #3a414e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #e10600;
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background-color: #3a414e;
    color: #e10600;
    /* Red */
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    background-color: #e10600;
    color: white;
    transform: rotateY(180deg);
}

.info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #e4a101;
    /* Gold */
    text-transform: uppercase;
    margin-bottom: 15px;
}

.info-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.5;
    margin-bottom: 10px;
}

.info-card strong {
    color: white;
    font-size: 1.1rem;
}

/* Responsivo para Info Cards */
@media (max-width: 992px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .info-cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}