/* =============================================
   NUTRIZEN · contacto.css
   ============================================= */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* ── Contact pills ───────────────────────── */
.contact-pills-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: white;
    border: 1.5px solid var(--sage-100);
    border-radius: 18px;
    text-decoration: none;
    color: var(--neutral-800);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contact-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-pill--wa:hover  { border-color: #25d366; }
.contact-pill--ig:hover  { border-color: #c084fc; }
.contact-pill--em:hover  { border-color: #60a5fa; }
.contact-pill--loc:hover { border-color: #fbbf24; }

.contact-pill__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-pill--wa  .contact-pill__icon { background: rgba(37,211,102,0.1);  color: #16a34a; }
.contact-pill--ig  .contact-pill__icon { background: rgba(192,132,252,0.1); color: #7c3aed; }
.contact-pill--em  .contact-pill__icon { background: rgba(96,165,250,0.1);  color: #1d4ed8; }
.contact-pill--loc .contact-pill__icon { background: rgba(251,191,36,0.1);  color: #b45309; }

.contact-pill__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.contact-pill__label {
    font-size: 0.75rem;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.contact-pill__value {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--neutral-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-pill__hint {
    font-size: 0.8rem;
    color: var(--neutral-500);
}

.contact-pill__arrow {
    font-size: 0.85rem;
    color: var(--neutral-400);
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

.contact-pill:hover .contact-pill__arrow {
    transform: translateX(3px);
    color: var(--sage-600);
}

/* ── Map ─────────────────────────────────── */
.map-block {
    background: white;
    border: 1.5px solid var(--sage-100);
    border-radius: 20px;
    overflow: hidden;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--sage-100);
}

.map-header i {
    font-size: 1.3rem;
    color: var(--sage-600);
    flex-shrink: 0;
}

.map-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--sage-800);
    font-weight: 500;
    margin: 0;
}

.map-header p {
    font-size: 0.85rem;
    color: var(--neutral-500);
    margin: 0;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
    .map-wrapper iframe {
        height: 280px;
    }
}

.contact-pill--th .contact-pill__icon { background: rgba(0,0,0,0.06);       color: #000; }
.contact-pill--fb .contact-pill__icon { background: rgba(24,119,242,0.1);    color: #1877f2; }
.contact-pill--th:hover { border-color: #000; }
.contact-pill--fb:hover { border-color: #1877f2; }

.contact-pill--chat .contact-pill__icon { background: rgba(58,125,90,0.12); color: #3a7d5a; }
.contact-pill--chat:hover { border-color: #3a7d5a; }
.contact-pill--chat .contact-pill__value { color: var(--sage-700); }