/* ConlineWeb — Contacto (alineado a landings corporativas) */

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', sans-serif; }

:root {
    --deep-space: #0a0a0f;
    --neon-blue: #00f3ff;
    --neon-purple: #b967ff;
    --matrix-green: #00ff9d;
    --stardust: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
    --content-max: var(--cw-shell-wide, 1540px);
}

body {
    background: var(--deep-space);
    color: var(--stardust);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 6rem;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.top-content-wrapper,
.full-width-section {
    width: 100%;
    position: relative;
    z-index: 2;
}

.container {
    max-width: var(--content-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.container--hero {
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sw-section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.sw-section + .sw-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Hero centrado ── */
.contact-hero {
    display: block;
    padding: clamp(2.5rem, 6vw, 4.25rem) 0 clamp(1.75rem, 3.5vw, 2.75rem);
    text-align: center;
}

.contact-hero .hero-intro {
    max-width: 760px;
    margin: 0 auto;
}

.badge {
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.35);
    padding: 0.7rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--neon-blue);
    width: fit-content;
    margin: 0 auto 1.35rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Poiret One', sans-serif;
    font-size: clamp(2.35rem, 5.5vw, 3.9rem);
    font-weight: 400;
    margin-bottom: 1.1rem;
    line-height: 1.22;
    padding-block: 0.05em 0.12em;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    font-weight: 300;
    max-width: 40rem;
    margin: 0 auto 1.75rem;
}

.hero-subtitle strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.35rem;
}

/* Mismo lenguaje CTA que landings (software / páginas web) */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 1rem 2.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 243, 255, 0.2);
}

/* ── Canales (mismo patrón icono + título que Nosotros) ── */
.contact-channels { padding-top: clamp(1.25rem, 3vw, 2rem); }

.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-channel-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.7rem;
    row-gap: 0.45rem;
    align-items: start;
    padding: 1.15rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-channel-card:hover,
.contact-channel-card:focus-visible {
    border-color: rgba(0, 243, 255, 0.3);
    background: rgba(0, 243, 255, 0.05);
    transform: translateY(-2px);
    outline: none;
}

.contact-channel-card > i {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    margin: 0;
    border-radius: 10px;
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
    font-size: 0.92rem;
    align-self: center;
}

.contact-channel-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 1.02rem;
    font-weight: 650;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.94);
}

.contact-channel-card p {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
    word-break: break-word;
}

.contact-hero__nap {
    margin: 0 auto 1.35rem;
    max-width: 36rem;
    font-size: 0.84rem;
    font-weight: 550;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.58);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.55rem;
}

.contact-identity {
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 18px;
    border: 1px solid rgba(0, 243, 255, 0.18);
    background:
        linear-gradient(145deg, rgba(0, 243, 255, 0.07) 0%, rgba(185, 103, 255, 0.04) 45%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.contact-identity__brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-right: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-identity__eyebrow {
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 243, 255, 0.8);
}

.contact-identity__name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
}

.contact-identity__aka {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.contact-identity__msg {
    margin-top: 0.55rem !important;
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 500;
}

.contact-identity__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.1rem;
}

.contact-identity__list li {
    display: grid;
    grid-template-columns: 1.35rem minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
}

.contact-identity__list i {
    margin-top: 0.15rem;
    color: rgba(0, 243, 255, 0.85);
    font-size: 0.85rem;
}

.contact-identity__list span {
    display: block;
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.15rem;
}

.contact-identity__list a,
.contact-identity__list em {
    display: block;
    font-style: normal;
    font-size: 0.86rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.contact-identity__list a:hover {
    color: var(--neon-blue);
}

@media (max-width: 900px) {
    .contact-identity {
        grid-template-columns: 1fr;
    }
    .contact-identity__brand {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .contact-identity__list {
        grid-template-columns: 1fr;
    }
}

/* ── Encabezados ── */
.section-label {
    display: block;
    text-align: center;
    font-weight: 700;
    color: var(--neon-blue);
    font-size: 0.76rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sw-section-title {
    font-family: 'Poiret One', sans-serif;
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1.5px;
    line-height: 1.25;
}

.sw-section-lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(0.95rem, 1.7vw, 1.05rem);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 2.25rem;
}

/* ── Cotización ── */
.contact-quote {
    background: none;
}

.contact-process-grid {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-process-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.7rem;
    row-gap: 0.35rem;
    align-items: start;
    padding: 1.1rem 1.05rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-process-card__n {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
    align-self: center;
}

.contact-process-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 1.02rem;
    font-weight: 650;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.94);
}

.contact-process-card p {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.contact-quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
    gap: 1rem;
    align-items: start;
}

.contact-form-card {
    padding: clamp(1.15rem, 2.4vw, 1.55rem);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form__group {
    border: none;
    margin: 0 0 1.35rem;
    padding: 0;
}

.contact-form__group:last-of-type {
    margin-bottom: 1rem;
}

.contact-form__group legend {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 0.7rem;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
    float: none;
}

.contact-form__group legend i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 10px;
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
    font-size: 0.92rem;
}

.contact-form__group legend span {
    font-size: 1.02rem;
    font-weight: 650;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: 0;
    text-transform: none;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    margin-bottom: 0.85rem;
}

.contact-form__row:last-child { margin-bottom: 0; }

.contact-form__row--stack {
    grid-template-columns: 1fr;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form__field span {
    font-size: 0.72rem;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.52);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form__phone-row {
    display: grid;
    grid-template-columns: minmax(7.5rem, 8.5rem) minmax(0, 1fr);
    gap: 0.55rem;
    align-items: stretch;
}

.contact-form__phone-row select {
    padding-right: 1.75rem;
}

.contact-form__phone-hint {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.92);
    font-family: inherit;
    font-size: 0.94rem;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form__field select {
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(0, 243, 255, 0.7) 50%),
        linear-gradient(135deg, rgba(0, 243, 255, 0.7) 50%, transparent 50%);
    background-position: calc(100% - 1.15rem) calc(50% - 0.12rem), calc(100% - 0.85rem) calc(50% - 0.12rem);
    background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
    background-repeat: no-repeat;
    padding-right: 2.25rem;
}

.contact-form__field select option {
    color: #0f172a;
    background: #fff;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: rgba(0, 243, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
    background: rgba(0, 243, 255, 0.04);
}

.contact-form__field textarea {
    min-height: 128px;
    resize: vertical;
}

.contact-form__actions {
    margin-top: 0.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.contact-form__submit {
    min-width: min(100%, 280px);
    border: none;
    cursor: pointer;
    font-family: inherit;
    border-radius: 999px !important;
    min-height: 48px;
    padding: 0.65rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(37, 211, 102, 0.45) !important;
    background: rgba(37, 211, 102, 0.16) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(37, 211, 102, 0.65) !important;
    background: rgba(37, 211, 102, 0.24) !important;
    outline: none;
}

.contact-form__submit i {
    color: #3be07a;
}

.contact-form__note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.72rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.42);
    text-align: left;
}

.contact-form__note i {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.65rem;
    flex-shrink: 0;
}

.contact-form__captcha[hidden] { display: none !important; }
.contact-form__captcha.cw-captcha-panel { margin: 0 0 1rem; }

.contact-quote-aside {
    display: grid;
    gap: 1rem;
}

.contact-info-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.7rem;
    row-gap: 0.55rem;
    align-items: start;
    padding: 1.15rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-info-card--accent {
    border-color: rgba(0, 243, 255, 0.22);
    background: rgba(0, 243, 255, 0.05);
}

.contact-info-card > i {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 10px;
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
    font-size: 0.92rem;
    align-self: center;
}

.contact-info-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 1.02rem;
    font-weight: 650;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.94);
}

.contact-info-card > p,
.contact-info-card > ul,
.contact-info-card > .contact-hours__note {
    grid-column: 1 / -1;
}

.contact-info-card > p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
}

.contact-hours {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.contact-hours__item {
    display: flex;
    justify-content: space-between;
    gap: 0.65rem;
    font-size: 0.86rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hours__item:last-child { border-bottom: 0; padding-bottom: 0; }

.contact-hours__item span { color: rgba(255, 255, 255, 0.48); }
.contact-hours__item strong { color: rgba(255, 255, 255, 0.88); font-weight: 600; }
.contact-hours__item.is-current {
    padding: 0.45rem 0.55rem;
    margin: 0 -0.55rem;
    border-radius: 8px;
    background: rgba(0, 243, 255, 0.08);
    border-color: transparent;
}
.contact-hours__item.is-current strong { color: var(--neon-blue); }
.contact-hours__note {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
}

/* ── Ubicación ── */
.contact-location__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 320px;
    background: rgba(0, 0, 0, 0.25);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}

.contact-location__info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.4rem 1.45rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-location__detail {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.contact-location__detail > i {
    margin-top: 0.2rem;
    color: var(--neon-blue);
    width: 1.1rem;
    text-align: center;
}

.contact-location__detail strong {
    display: block;
    font-size: 0.84rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.contact-location__detail p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.contact-location__info .cta-button {
    margin-top: auto;
    align-self: flex-start;
}

/* ── FAQ ── */
.contact-faq .accordion-item {
    margin-bottom: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.contact-faq .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
}

.contact-faq .accordion-header i {
    color: var(--neon-blue);
    transition: transform 0.25s ease;
}

.contact-faq .accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.contact-faq .accordion-content {
    display: none;
    padding: 0 1.2rem 1.15rem;
}

.contact-faq .accordion-content.active {
    display: block;
}

.contact-faq .accordion-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

/* ── CTA final ── */
.contact-final-cta { padding-top: 1rem; }

.personal-consult-module {
    background: rgba(12, 14, 24, 0.92);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: clamp(2rem, 4vw, 2.6rem) 1.75rem;
    text-align: center;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    max-width: 640px;
    margin: 0 auto;
}

.personal-consult-module h3 {
    font-family: 'Poiret One', sans-serif;
    color: var(--neon-blue);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}

.personal-consult-module p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
    line-height: 1.6;
}

.personal-consult-module .cta-button {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    border: none;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .contact-quote-layout,
    .contact-location__grid {
        grid-template-columns: 1fr;
    }

    .contact-quote-aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body { padding-top: 5rem; }

    .contact-process-grid,
    .contact-quote-aside,
    .contact-channel-grid,
    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        align-items: stretch;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button,
    .contact-form__submit {
        width: 100%;
    }

    .contact-form__actions {
        align-items: stretch;
    }
}

/* --- ≤480px: teléfono --- */
@media (max-width: 480px) {
    .contact-channel-card,
    .contact-form-card,
    .contact-process-card,
    .contact-info-card {
        padding: 1.05rem 1rem;
    }
    .contact-form__field input,
    .contact-form__field select,
    .contact-form__field textarea {
        font-size: 16px;
    }
    .contact-form__submit {
        min-height: 48px;
        font-size: 0.8rem;
    }
    .sw-section-title {
        font-size: 1.85rem;
    }
    .hero-title {
        font-size: clamp(2rem, 9vw, 2.4rem);
    }
}
