/* ==============================================================
   contact.css — página de contato (formulário + dados + redes)
   Escopo: .cx-* (BEM)
   ============================================================== */

/* ==============================================================
   Popup de mensagem enviada
   ============================================================== */
.cx-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cx-popup.is-open {
    opacity: 1;
    visibility: visible;
}
.cx-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.cx-popup__card {
    position: relative;
    z-index: 1;
    width: min(440px, calc(100% - 32px));
    padding: 40px 32px 32px;
    text-align: center;
    border-radius: 20px;
    background:
        radial-gradient(400px 180px at 50% -10%, rgba(45, 182, 222, 0.12), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #e3ecf4;
    box-shadow:
        0 32px 80px rgba(10, 31, 42, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transform: translateY(18px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}
.cx-popup.is-open .cx-popup__card {
    transform: translateY(0) scale(1);
}
.cx-popup__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(45, 182, 222, 0.75), rgba(125, 211, 239, 0.9), rgba(45, 182, 222, 0.75), transparent);
}

.cx-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #6b7a82;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.cx-popup__close:hover {
    background: rgba(45, 182, 222, 0.08);
    color: #0A3A68;
}

/* Ícone check animado */
.cx-popup__icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 55%),
        linear-gradient(135deg, #22c55e 0%, #2DB6DE 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(34, 197, 94, 0.12),
        0 16px 40px rgba(34, 197, 94, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.4) inset;
}
.cx-popup__icon svg {
    width: 52px;
    height: 52px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
    stroke: #ffffff;
}
.cx-popup__icon-circle {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    transition: stroke-dashoffset 0.6s ease-out;
    opacity: 0.35;
}
.cx-popup__icon-check {
    stroke: #ffffff;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    transition: stroke-dashoffset 0.45s 0.25s cubic-bezier(0.65, 0, 0.45, 1);
}
.cx-popup.is-open .cx-popup__icon-circle { stroke-dashoffset: 0; }
.cx-popup.is-open .cx-popup__icon-check  { stroke-dashoffset: 0; }

.cx-popup__title {
    margin: 0 0 10px;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0B1F2A;
}
.cx-popup__lead {
    margin: 0 0 24px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #4A5A63;
}
.cx-popup__lead strong { color: #0A3A68; }

.cx-popup__actions {
    display: flex;
    justify-content: center;
}
.cx-popup__btn {
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cx-popup__btn--primary {
    background: linear-gradient(135deg, #1F6FAA 0%, #2DB6DE 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(45, 182, 222, 0.35);
}
.cx-popup__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(31, 111, 170, 0.45);
}

/* Evita scroll do body enquanto popup está aberto */
body.cx-popup-open { overflow: hidden; }

/* Alertas de sucesso/erro do formulário */
.cx-alert {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 4px 0 0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
    animation: cx-alert-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.cx-alert i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.cx-alert strong { font-weight: 700; }
.cx-alert--success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(45, 182, 222, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #0B4A26;
}
.cx-alert--success i { color: #22c55e; }
.cx-alert--error {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(230, 57, 70, 0.04));
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: #7a1f28;
}
.cx-alert--error i { color: #E63946; }
.cx-alert ul { margin: 6px 0 0; padding-left: 18px; font-size: 0.86rem; }
@keyframes cx-alert-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cx-section {
    position: relative;
    padding: 90px 0 100px;
    background:
        radial-gradient(1000px 500px at 85% -10%, rgba(45, 182, 222, 0.06), transparent 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(31, 111, 170, 0.05), transparent 60%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 60%);
}

.cx-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 58, 104, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 58, 104, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.cx-section > .container {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------
   Faixa de promessas — 4 mini-cards premium (ponte hero → form)
   -------------------------------------------------------------- */
.cx-promise {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: -80px 0 50px;
    padding: 22px;
    border-radius: 22px;
    position: relative;
    z-index: 3;
    background:
        radial-gradient(600px 200px at 50% 0%, rgba(45, 182, 222, 0.08), transparent 70%),
        radial-gradient(500px 180px at 85% 100%, rgba(31, 111, 170, 0.05), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
    border: 1px solid #e3ecf4;
    box-shadow:
        0 30px 70px rgba(10, 58, 104, 0.14),
        0 8px 20px rgba(10, 58, 104, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    counter-reset: promise;
}

/* Linha luminosa superior */
.cx-promise::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(45, 182, 222, 0.7), rgba(125, 211, 239, 0.85), rgba(45, 182, 222, 0.7), transparent);
    border-radius: 2px;
    filter: blur(0.3px);
}

.cx-promise__item {
    counter-increment: promise;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 16px 16px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(247, 251, 255, 0.3));
    border: 1px solid transparent;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

/* Numeração discreta no canto superior direito (01 / 02 / 03 / 04) */
.cx-promise__item::after {
    content: "0" counter(promise);
    position: absolute;
    top: 10px;
    right: 12px;
    font-family: ui-monospace, "SF Mono", "JetBrains Mono", Consolas, monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #a5b5c4;
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* Barra acento vertical à esquerda que cresce no hover */
.cx-promise__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 3px;
    background: linear-gradient(180deg, #2DB6DE 0%, #1F6FAA 100%);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transform: scaleY(0.3);
    transform-origin: center;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cx-promise__item:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 182, 222, 0.25);
    background: linear-gradient(180deg, #ffffff, #f2faff);
    box-shadow:
        0 18px 36px rgba(10, 58, 104, 0.12),
        0 6px 14px rgba(31, 111, 170, 0.08);
}

.cx-promise__item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.cx-promise__item:hover::after {
    color: #2DB6DE;
    opacity: 1;
}

/* Ícone em pill com gradiente rico + ring glow no hover */
.cx-promise__icon {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(45, 182, 222, 0.18) 0%, rgba(31, 111, 170, 0.14) 100%);
    border: 1px solid rgba(45, 182, 222, 0.3);
    color: #1F6FAA;
    font-size: 1.1rem;
    box-shadow:
        0 4px 14px rgba(45, 182, 222, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

/* Ring pulsante no hover — detalhe premium */
.cx-promise__icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(45, 182, 222, 0.45);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.cx-promise__item:hover .cx-promise__icon {
    color: #0A3A68;
    transform: scale(1.05);
    box-shadow:
        0 8px 22px rgba(45, 182, 222, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.cx-promise__item:hover .cx-promise__icon::after {
    opacity: 1;
    transform: scale(1.05);
}

.cx-promise__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    padding-right: 18px; /* espaço para o numero 0X */
}

.cx-promise__text strong {
    font-size: 0.94rem;
    font-weight: 700;
    color: #0B1F2A;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cx-promise__text span {
    font-size: 0.76rem;
    color: #5b6b78;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .cx-promise {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -60px;
    }
}

@media (max-width: 575.98px) {
    .cx-promise {
        grid-template-columns: 1fr;
        margin-top: -40px;
        padding: 16px;
    }
    .cx-promise__item { padding: 14px; }
}

/* --------------------------------------------------------------
   CARD CONTAINER — formulário e painel lateral
   -------------------------------------------------------------- */
.cx-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e7ecf3;
    border-radius: 20px;
    padding: 36px 34px;
    box-shadow:
        0 30px 60px rgba(11, 31, 42, 0.06),
        0 6px 20px rgba(11, 31, 42, 0.04);
    overflow: hidden;
    height: 100%;
}

.cx-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A3A68 0%, #2DB6DE 50%, #7DD3EF 100%);
}

.cx-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: ui-monospace, "SF Mono", "JetBrains Mono", Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1F6FAA;
    margin-bottom: 10px;
}

.cx-card__eyebrow::before {
    content: "";
    width: 18px;
    height: 1.5px;
    background: linear-gradient(90deg, #2DB6DE, rgba(45, 182, 222, 0.2));
    border-radius: 1px;
}

.cx-card__title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0B1F2A;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 10px;
}

.cx-card__lead {
    color: #4A5A63;
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0 0 28px;
    max-width: 520px;
}

/* --------------------------------------------------------------
   FORM FIELDS
   -------------------------------------------------------------- */
.cx-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.cx-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.cx-field--full {
    grid-column: 1 / -1;
}

.cx-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0B1F2A;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.cx-field label .cx-req {
    color: #E63946;
    margin-left: 3px;
}

.cx-field input,
.cx-field textarea,
.cx-field select {
    width: 100%;
    padding: 14px 16px;
    background: #f6f8fb;
    border: 1.5px solid #e3e8ee;
    border-radius: 12px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.95rem;
    color: #0B1F2A;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.cx-field input::placeholder,
.cx-field textarea::placeholder {
    color: #9aa5b8;
}

.cx-field input:hover,
.cx-field textarea:hover,
.cx-field select:hover {
    border-color: #c8d1dc;
    background: #f1f4f8;
}

.cx-field input:focus,
.cx-field textarea:focus,
.cx-field select:focus {
    border-color: #2DB6DE;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(45, 182, 222, 0.15);
}

.cx-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}

/* Ícone à esquerda do campo */
.cx-field--icon input,
.cx-field--icon textarea {
    padding-left: 44px;
}

.cx-field__icon {
    position: absolute;
    left: 16px;
    top: 44px;
    color: #1F6FAA;
    font-size: 1rem;
    pointer-events: none;
}

.cx-field:focus-within .cx-field__icon {
    color: #2DB6DE;
}

/* Botão submit */
.cx-submit {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.cx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #0A3A68 0%, #2DB6DE 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(45, 182, 222, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cx-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(31, 111, 170, 0.4);
    color: #ffffff;
}

.cx-btn:active {
    transform: translateY(0);
}

.cx-note {
    font-size: 0.82rem;
    color: #6b7a82;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cx-note i {
    color: #2DB6DE;
}

/* --------------------------------------------------------------
   INFO PANEL — lado direito
   -------------------------------------------------------------- */
.cx-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cx-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    border: 1px solid #e7ecf3;
    border-radius: 14px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cx-info__item:hover {
    border-color: rgba(45, 182, 222, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 31, 42, 0.06);
}

.cx-info__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(45, 182, 222, 0.14), rgba(31, 111, 170, 0.14));
    border: 1px solid rgba(45, 182, 222, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F6FAA;
    font-size: 1.08rem;
}

.cx-info__content {
    flex: 1;
    min-width: 0;
}

.cx-info__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #6b7a82;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 4px;
}

.cx-info__value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0B1F2A;
    line-height: 1.4;
    word-break: break-word;
}

.cx-info__value a {
    color: #0B1F2A;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cx-info__value a:hover {
    color: #1F6FAA;
    border-bottom-color: rgba(31, 111, 170, 0.4);
}

/* Horário de atendimento */
.cx-hours {
    margin-top: 12px;
    padding: 22px;
    border-radius: 18px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top left, rgba(45, 182, 222, 0.18), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(31, 111, 170, 0.25), transparent 60%),
        linear-gradient(135deg, #0A3A68 0%, #1F6FAA 65%, #0A3A68 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 40px rgba(10, 58, 104, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

/* Linha superior luminosa */
.cx-hours::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 239, 0.75), transparent);
    z-index: 2;
}

/* Glow difuso no canto */
.cx-hours::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(45, 182, 222, 0.3), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cx-hours > * { position: relative; z-index: 1; }

/* Header */
.cx-hours__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cx-hours__badge {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(125, 211, 239, 0.2), rgba(45, 182, 222, 0.12));
    border: 1px solid rgba(125, 211, 239, 0.35);
    color: #7DD3EF;
    font-size: 1.05rem;
    box-shadow: 0 0 18px rgba(45, 182, 222, 0.25);
}

.cx-hours__heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cx-hours__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7DD3EF;
}

.cx-hours__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* Lista de horários */
.cx-hours__list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cx-hours__row {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cx-hours__row:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(125, 211, 239, 0.22);
}

.cx-hours__row-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(45, 182, 222, 0.12);
    color: #7DD3EF;
    font-size: 0.9rem;
}

.cx-hours__row-label {
    font-weight: 600;
    color: #ffffff;
}

.cx-hours__row-value {
    color: #dbe4f2;
    font-weight: 500;
    font-size: 0.86rem;
    white-space: nowrap;
}

/* Bloco Suporte 24/7 */
.cx-hours__live {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(45, 182, 222, 0.1));
    border: 1px solid rgba(125, 211, 239, 0.3);
    box-shadow: 0 0 16px rgba(45, 182, 222, 0.15) inset;
}

.cx-hours__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22), 0 0 10px rgba(34, 197, 94, 0.7);
    animation: cx-pulse 1.8s infinite;
    flex-shrink: 0;
}

.cx-hours__live-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cx-hours__live-text strong {
    color: #7DD3EF;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.cx-hours__live-text span {
    color: #cfe6ea;
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.3;
}

.cx-hours__live-tag {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #22c55e;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    white-space: nowrap;
}

@keyframes cx-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22), 0 0 0 0 rgba(34, 197, 94, 0.55); }
    50%      { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22), 0 0 0 8px rgba(34, 197, 94, 0); }
}


/* --------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------- */
@media (max-width: 767.98px) {
    .cx-section {
        padding: 60px 0 70px;
    }
    .cx-card {
        padding: 28px 22px;
    }
    .cx-card__title {
        font-size: 1.4rem;
    }
    .cx-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cx-submit {
        flex-direction: column;
        align-items: stretch;
    }
    .cx-btn {
        width: 100%;
    }
}
