/* ============================================================
   Guastavino — Contact cards
   Used on /contacto/ via [guastavino_contacto] shortcode.
   ============================================================ */

.gv-contacto {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 20px;
    font-family: inherit;
    color: #1a1a1a;
}

.gv-contacto__header {
    text-align: center;
    margin-bottom: 40px;
}

.gv-contacto__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
    color: #111;
}

.gv-contacto__subtitle {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.gv-contacto__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ---- Card base ---- */
.gv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    background: #fff;
    border: 2px solid #111;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 6px 6px 0 #111;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    overflow: hidden;
}

.gv-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #111;
}

.gv-card:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #111;
}

/* ---- Icon ---- */
.gv-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f3f3f3;
    color: #111;
}

/* ---- Body ---- */
.gv-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gv-card__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}

.gv-card__value {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    word-break: break-word;
}

.gv-card__cta {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    opacity: 0.7;
}

/* ---- Primary (WhatsApp) variant ---- */
.gv-card--primary {
    background: #25D366;
    color: #fff;
    border-color: #0f1f15;
    box-shadow: 6px 6px 0 #0f1f15;
}

.gv-card--primary:hover {
    box-shadow: 8px 8px 0 #0f1f15;
    background: #20bd5a;
}

.gv-card--primary .gv-card__icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.gv-card--primary .gv-card__eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

.gv-card--primary .gv-card__value,
.gv-card--primary .gv-card__cta {
    color: #fff;
    opacity: 1;
}

/* ---- Social variant ---- */
.gv-card--social {
    cursor: default;
}

.gv-card--social:hover {
    transform: none;
    box-shadow: 6px 6px 0 #111;
}

.gv-card__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.gv-card__socials a {
    display: inline-block;
    padding: 8px 14px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease;
}

.gv-card__socials a:hover {
    background: #ff6a00; /* nod to the logo's orange */
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .gv-contacto__grid {
        grid-template-columns: 1fr;
    }

    .gv-card {
        box-shadow: 4px 4px 0 #111;
    }

    .gv-card--primary {
        box-shadow: 4px 4px 0 #0f1f15;
        /* Make WhatsApp the first card on mobile */
        order: -1;
    }
}