/* contacto.css — Contact page styles — mobile first */

/* ---- Hero ---- */
.ctc-hero {
    padding: 100px 24px 28px;
    text-align: left;
}

.ctc-hero__title {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin: 12px 0 14px;
}

.ctc-hero__sub {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
}

/* ---- Section wrapper ---- */
.ctc-section {
    padding: 8px 20px 32px;
}

/* ---- Contact cards grid — single column on mobile ---- */
.ctc-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---- Individual card ---- */
.ctc-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px 20px;
    transition: border-color 0.2s;
}

.ctc-card:hover {
    border-color: rgba(200, 14, 20, 0.3);
}

/* ---- Icon circle ---- */
.ctc-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctc-card__icon svg {
    width: 22px;
    height: 22px;
}

.ctc-card__icon--wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.ctc-card__icon--ig {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.ctc-card__icon--mail {
    background: rgba(200, 14, 20, 0.12);
    color: var(--red);
}

.ctc-card__icon--loc {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
}

/* ---- Card text body ---- */
.ctc-card__body {
    flex: 1;
    min-width: 0;
}

.ctc-card__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 6px;
}

.ctc-card__value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    word-break: break-all;
}

.ctc-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
}

.ctc-card__link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--red);
    text-decoration: none;
    transition: opacity 0.15s;
}

.ctc-card__link:hover {
    opacity: 0.75;
}

/* ---- CTA section ---- */
.ctc-cta-wrap {
    padding-top: 0;
    padding-bottom: 48px;
}

.ctc-cta {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px 24px;
    text-align: center;
}

.ctc-cta__title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ctc-cta__sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.ctc-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    transition: opacity 0.2s, transform 0.2s;
}

.ctc-cta__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ---- Footer (reuse from nosotros) ---- */
.footer__cols {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer__brand { flex: 1; }

.footer__logo {
    max-height: 22px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.footer__tagline {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer__links a {
    color: #555;
    font-size: 13px;
    text-decoration: none;
}

.footer__links a:hover { color: #aaa; }

.footer__bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1e;
    color: #444;
    font-size: 12px;
}

/* ---- WhatsApp floating button ---- */
.wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: opacity 0.2s;
}

.wa-btn:hover { opacity: 0.9; }

.wa-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ================================================================
   TABLET  ≥ 640px — 2-column card grid
   ================================================================ */
@media (min-width: 640px) {
    .ctc-hero {
        padding: 110px 40px 32px;
        text-align: center;
    }

    .ctc-hero__title { font-size: 44px; }

    .ctc-hero__sub { margin: 0 auto; }

    .ctc-section { padding: 12px 40px 40px; }

    .ctc-cta-wrap { padding-bottom: 56px; }

    .ctc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ctc-cta { padding: 40px 40px; }

    .ctc-cta__title { font-size: 30px; }
}

/* ================================================================
   DESKTOP  ≥ 1024px
   ================================================================ */
@media (min-width: 1024px) {
    .ctc-hero {
        padding: 120px 0 40px;
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .ctc-hero__title { font-size: 52px; }

    .ctc-section {
        max-width: 900px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }

    .ctc-card__value { font-size: 20px; }

    .ctc-cta__title { font-size: 34px; }
}
