.contacto-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 90px 6%;
    background: white;
    min-height: 70vh;
}

.contacto-text .eyebrow {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    color: #009899;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contacto-text h1 {
    font-family: 'Overpass', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 42px);
    color: #020d1f;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 16px;
}

.contacto-text > p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 32px;
}

.contacto-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.contacto-details a.detail-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #020d1f;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s;
}

.contacto-details a.detail-link:hover {
    color: #009899;
}

.contacto-details .detail-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #009899;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacto-details .detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: #009899;
}

.contacto-social p {
    font-family: 'Overpass', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #020d1f;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contacto-social .social-row {
    display: flex;
    gap: 12px;
}

.contacto-social .social-icon {
    width: 42px;
    height: 42px;
    background: #020d1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.contacto-social .social-icon:hover {
    background: #009899;
}

.contacto-social .social-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: white;
}

.contacto-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #020d1f 0%, #0a1628 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ----- Mobile ----- */
@media only screen and (max-width: 768px) {
    .contacto-main {
        grid-template-columns: 1fr;
        padding: 48px 6%;
        gap: 40px;
    }

    .contacto-image {
        min-height: 280px;
        order: -1;
    }

    .contacto-text > p {
        max-width: 100%;
    }
}