/* ===== RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CONTACTO ===== */

.contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;

}

.contact-container {
    width: 100%;
    max-width: 1000px;
    background: white;
    display: grid;
    grid-template-columns: 420px 1fr;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* ===== INFORMACION ===== */

.contact-info {
    background: #f7f7f7;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #111;
}

.contact-info .description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.divider {
    width: 100%;
    height: 2px;
    background: #d6d1ca;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 25px;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.info-item strong {
    color: #111;
}

.info-item a {
    color: #555;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* ===== MAPA ===== */

.contact-map {
    width: 100%;
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 700px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .contact-info {
        padding: 50px 30px;
    }

    .contact-info h1 {
        font-size: 2.2rem;
    }

    .contact-info .description {
        font-size: 1rem;
    }

    .info-item {
        font-size: 1rem;
    }
}