.contact-page {
    width: 92%;
    margin: 40px auto 0;
}

.contact-card {
    background: rgba(255,255,255,0.92);

    border-radius: 28px;

    padding: 34px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);

    color: #053985;
}

/* =========================
   INTRO
========================= */

.contact-intro {
    margin-bottom: 28px;

    text-align: center;
}

.contact-badge {
    display: inline-block;

    margin-bottom: 16px;

    padding: 8px 18px;

    border-radius: 999px;

    background: rgba(11,63,146,0.08);

    color: #0b3f92;

    font-size: 0.88rem;

    font-weight: 700;

    letter-spacing: 0.3px;
}

.contact-intro h1 {
    font-family: 'Oxygen', sans-serif;

    font-size: 42px;

    line-height: 1.15;

    letter-spacing: -0.8px;

    color: #0b3f92;

    margin-bottom: 18px;
}

.contact-intro p {
    max-width: 860px;

    margin: 0 auto;

    font-size: 19px;

    line-height: 1.8;

    color: #45607f;
}

/* =========================
   GRID
========================= */

.contact-grid {
    display: grid;

    grid-template-columns: 1.02fr 0.98fr;

    gap: 26px;
}

/* =========================
   FORMULARIO
========================= */

.contact-form-wrapper {
    background: rgba(255,255,255,0.72);

    border-radius: 24px;

    padding: 28px;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-family: 'Oxygen', sans-serif;

    font-size: 24px;

    color: #0b3f92;

    margin-bottom: 22px;
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    border: none;

    border-radius: 18px;

    padding: 16px 18px;

    background: rgba(5,57,133,0.07);

    font-family: 'Open Sans', sans-serif;

    font-size: 16px;

    color: #053985;

    outline: none;

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(5,57,133,0.10);

    box-shadow:
        0 0 0 3px rgba(11,63,146,0.12);
}

.contact-form textarea {
    min-height: 185px;

    resize: vertical;
}

.contact-form button {
    border: none;

    border-radius: 18px;

    padding: 16px 20px;

    background: #0a9f2e;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;

    box-shadow:
        0 8px 18px rgba(10,159,46,0.25);
}

.contact-form button:hover {
    background: #0cb637;

    transform: translateY(-2px);
}

.contact-note {
    margin-top: 18px;

    font-size: 14px;

    line-height: 1.6;

    color: #667281;
}

/* =========================
   INFO
========================= */

.contact-info {
    display: flex;

    flex-direction: column;

    gap: 16px;
}

.info-item {
    background: rgba(255,255,255,0.72);

    border-radius: 22px;

    padding: 18px 22px;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.08);
}

.info-item h3 {
    display: flex;

    align-items: center;

    gap: 12px;

    font-family: 'Oxygen', sans-serif;

    font-size: 19px;

    color: #0b3f92;

    margin-bottom: 10px;
}

.info-icon {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;

    height: 22px;

    fill: #0b3f92;
}

.whatsapp-icon img {
    width: 24px;

    height: 24px;

    display: block;
}

.info-item p {
    font-size: 16px;

    line-height: 1.7;

    color: #4f647c;
}

.info-item a {
    color: #4f647c;

    text-decoration: none;

    transition: color 0.2s ease;
}

.info-item a:hover {
    color: #0b3f92;
}

/* =========================
   MAPA
========================= */

.map-container {
    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.12);
}

.map-container iframe {
    width: 100%;

    height: 420px;

    border: none;

    display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .contact-intro h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .contact-card {
        padding: 24px;
    }

    .contact-intro {
        margin-bottom: 24px;
    }

    .contact-intro h1 {
        font-size: 29px;
    }

    .contact-intro p {
        font-size: 17px;
    }

    .contact-form-wrapper,
    .info-item {
        padding: 20px;
    }

    .contact-form textarea {
        min-height: 160px;
    }

    .map-container iframe {
        height: 340px;
    }
}