/**
 * Atención Veterinaria Online, Especialistas y Sala de Guardia — Crecienta CSS
 * Tucumascotas
 */

.tc-vet-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   1. HERO ATENCIÓN ONLINE
   ========================================================================== */
.tc-vet-hero {
    background: linear-gradient(135deg, #2b1055 0%, #591a75 50%, #6b2c91 100%);
    color: #ffffff;
    padding: 60px 0 65px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tc-vet-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.tc-vet-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.tc-vet-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffd27a;
    margin-bottom: 20px;
}

.tc-vet-hero__pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: tcPulse 1.8s infinite;
}

@keyframes tcPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.tc-vet-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 18px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.tc-vet-hero__desc {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.6;
    color: #e2d9f3;
    margin: 0 0 28px;
}

.tc-vet-hero__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tc-vet-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
}

/* ==========================================================================
   2. SECCIÓN: CÓMO FUNCIONA
   ========================================================================== */
.tc-vet-steps {
    padding: 55px 0 45px;
    background: #f8fafc;
    text-align: center;
}

.tc-vet-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.tc-vet-section-sub {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 35px;
}

.tc-vet-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 820px) {
    .tc-vet-steps__grid {
        grid-template-columns: 1fr;
    }
}

.tc-vet-step-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 30px 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tc-vet-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.tc-vet-step-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #e2e8f0;
}

.tc-vet-step-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.tc-vet-step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.tc-vet-step-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   3. FORMULARIO PRINCIPAL DE PRE-CONSULTA
   ========================================================================== */
.tc-vet-booking {
    padding: 40px 0 60px;
    background: #f8fafc;
}

/* Alerta Médica Destacada (Triage) */
.tc-vet-emergency-alert {
    max-width: 800px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #fff1f2 0%, #fffbeb 100%);
    border: 1.5px solid #fecdd3;
    border-left: 6px solid #e11d48;
    border-radius: 20px;
    padding: 22px 26px;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.08);
}

.tc-vet-emergency-alert__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 29, 72, 0.1);
    color: #be123c;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.tc-vet-emergency-alert__pulse {
    width: 8px;
    height: 8px;
    background-color: #e11d48;
    border-radius: 50%;
    animation: tcPulseRed 1.8s infinite;
}

@keyframes tcPulseRed {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.tc-vet-emergency-alert__body {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tc-vet-emergency-alert__icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(225, 29, 72, 0.12);
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-vet-emergency-alert__text {
    flex: 1;
}

.tc-vet-emergency-alert__text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    color: #9f1239;
    margin: 0 0 6px;
    line-height: 1.35;
}

.tc-vet-emergency-alert__text p {
    font-size: 14px;
    color: #881337;
    margin: 0;
    line-height: 1.55;
}

.tc-vet-booking-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 650px) {
    .tc-vet-emergency-alert {
        padding: 18px 16px;
        margin-bottom: 20px;
    }

    .tc-vet-emergency-alert__body {
        gap: 12px;
    }

    .tc-vet-emergency-alert__icon {
        width: 38px;
        height: 38px;
    }

    .tc-vet-emergency-alert__icon svg {
        width: 22px;
        height: 22px;
    }

    .tc-vet-booking-card {
        padding: 24px 18px;
    }
}

.tc-vet-booking-card__header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #f1f5f9;
}

.tc-vet-booking-card__header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.tc-vet-booking-card__header p {
    font-size: 14.5px;
    color: #64748b;
    margin: 0;
}

.tc-vet-form-section {
    margin-bottom: 28px;
}

.tc-vet-form-label {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    display: block;
    margin-bottom: 12px;
}

/* Selector Animal */
.tc-vet-animal-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 540px) {
    .tc-vet-animal-selector {
        grid-template-columns: 1fr;
    }
}

.tc-vet-animal-pill {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.2s ease;
    background: #ffffff;
    position: relative;
}

.tc-vet-animal-pill input[type="radio"] {
    display: none;
}

.tc-vet-animal-pill.active {
    border-color: #6b2c91;
    background: #fbf6ff;
    box-shadow: 0 4px 16px rgba(107, 44, 145, 0.12);
}

.tc-vet-animal-pill__icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.tc-vet-animal-pill__name {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
}

.tc-vet-animal-pill__badge {
    font-size: 12px;
    color: #64748b;
}

/* Selector Tipo de Consulta */
.tc-vet-type-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-vet-type-pill {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    background: #ffffff;
}

.tc-vet-type-pill input[type="radio"] {
    display: none;
}

.tc-vet-type-pill.active {
    border-color: #f3a916;
    background: #fffbf2;
    box-shadow: 0 4px 16px rgba(243, 169, 22, 0.12);
}

.tc-vet-type-pill__content strong {
    font-family: 'Outfit', sans-serif;
    font-size: 15.5px;
    color: #1a1a2e;
    display: block;
    margin-bottom: 2px;
}

.tc-vet-type-pill__content span {
    font-size: 13px;
    color: #64748b;
}

.tc-vet-type-pill__price {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #d140e0;
    white-space: nowrap;
}

/* Grid y campos */
.tc-vet-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .tc-vet-grid-2 {
        grid-template-columns: 1fr;
    }
}

.tc-vet-field {
    margin-bottom: 16px;
}

.tc-vet-field label {
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    display: block;
    margin-bottom: 6px;
}

.tc-vet-field input[type="text"],
.tc-vet-field input[type="tel"],
.tc-vet-field input[type="email"],
.tc-vet-field textarea {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14.5px;
    color: #1a1a2e;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.tc-vet-field input:focus,
.tc-vet-field textarea:focus {
    border-color: #6b2c91;
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 44, 145, 0.12);
}

.tc-vet-field input[type="file"] {
    display: block;
    width: 100%;
    font-size: 13.5px;
    color: #475569;
}

.tc-vet-field__help {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Caja de Resumen y Botón Submit */
.tc-vet-summary-box {
    background: #fbf6ff;
    border: 1.5px solid #ebd4fc;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}

.tc-vet-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 10px;
}

.tc-vet-summary-row strong {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #d140e0;
}

.tc-vet-summary-note {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 18px;
    line-height: 1.45;
}

.tc-vet-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #f3a916 0%, #e07000 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(243, 169, 22, 0.35);
    transition: all 0.2s ease;
}

.tc-vet-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(243, 169, 22, 0.45);
}

.tc-vet-form-msg {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
}

.tc-vet-form-msg.error {
    color: #dc2626;
}

/* ==========================================================================
   4. PANTALLA: AGUARDANDO CONSULTA
   ========================================================================== */
.tc-waiting-page {
    background: #f8fafc;
    padding: 60px 0 80px;
}

.tc-waiting-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.tc-waiting-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 45px 36px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.tc-waiting-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.tc-waiting-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: tcPulse 1.8s infinite;
}

.tc-waiting-icon-wrapper {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    background: #fbf6ff;
    border: 1px solid #ebd4fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.tc-waiting-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3.2vw, 30px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 14px;
}

.tc-waiting-desc {
    font-size: 15.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 28px;
}

.tc-waiting-steps {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-waiting-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
}

.tc-waiting-step.active {
    color: #0f172a;
    font-weight: 600;
}

.tc-waiting-step.in-progress {
    color: #6b2c91;
    font-weight: 700;
}

.tc-waiting-step__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.tc-waiting-step.active .tc-waiting-step__dot {
    background: #10b981;
    color: #ffffff;
}

.tc-waiting-step.in-progress .tc-waiting-step__dot {
    background: #f3a916;
    color: #ffffff;
}

.tc-waiting-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.tc-waiting-btn--wp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background: #25d366;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.2s ease;
}

.tc-waiting-btn--wp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.tc-waiting-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
}

.tc-waiting-link:hover {
    color: #1a1a2e;
    text-decoration: underline;
}

.tc-waiting-footer-info {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.5;
}

/* ==========================================================================
   5. ESPECIALISTAS GRID
   ========================================================================== */
.tc-specialists-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: #ffffff;
    padding: 55px 0 60px;
    text-align: center;
}

.tc-specialists-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 800;
    color: #ffd27a;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.tc-specialists-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin: 0 0 14px;
    color: #ffffff;
}

.tc-specialists-hero__desc {
    font-size: 16px;
    color: #e0e7ff;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.6;
}

.tc-specialists-grid-section {
    padding: 50px 0 80px;
    background: #f8fafc;
}

.tc-specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 26px;
}

.tc-specialist-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tc-specialist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.tc-specialist-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #f8fafc;
}

.tc-specialist-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ebd4fc;
}

.tc-specialist-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-specialist-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #fbf6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.tc-specialist-badge {
    display: inline-block;
    background: #f3e8ff;
    color: #6b2c91;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 4px;
}

.tc-specialist-name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 2px;
}

.tc-specialist-mat {
    font-size: 12px;
    color: #64748b;
}

.tc-specialist-spec {
    font-size: 13.5px;
    color: #1e293b;
    margin: 0 0 8px;
}

.tc-specialist-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    margin: 0 0 14px;
}

.tc-specialist-schedule {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12.5px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.tc-specialist-card__footer {
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.tc-specialist-fees {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 12px;
}

.tc-specialist-fees strong {
    color: #d140e0;
}

.tc-specialist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    background: #6b2c91;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tc-specialist-btn:hover {
    background: #501d70;
    transform: translateY(-1px);
}

/* ==========================================================================
   6. THANK YOU PAGE WAITING BANNER
   ========================================================================== */
.tucu-vet-waiting-banner {
    background: #ffffff;
    border: 2px solid #ebd4fc;
    border-radius: 20px;
    padding: 32px 28px;
    margin: 24px 0 35px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(107, 44, 145, 0.08);
}

.tucu-vet-waiting-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.tucu-vet-waiting-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: tcPulse 1.8s infinite;
}

.tucu-vet-waiting-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.tucu-vet-waiting-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 20px;
}

.tucu-vet-waiting-actions {
    margin-bottom: 16px;
}

.tucu-vet-waiting-btn--wp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    height: 48px;
    background: #25d366;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.2s ease;
}

.tucu-vet-waiting-btn--wp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.tucu-vet-waiting-info {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ==========================================================================
   BANNER DE ALERTA MÉDICA DESTACADA (TRIAGE / EMERGENCIAS CRÍTICAS)
   ========================================================================== */
.tc-vet-emergency-alert {
    background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 100%);
    border: 1.5px solid #fecdd3;
    border-left: 6px solid #e11d48;
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.08);
}

.tc-vet-emergency-alert__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffe4e6;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.tc-vet-emergency-alert__pulse {
    width: 8px;
    height: 8px;
    background: #e11d48;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    animation: tcPulseRed 1.8s infinite;
}

@keyframes tcPulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.tc-vet-emergency-alert__body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tc-vet-emergency-alert__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #fee2e2;
    color: #e11d48;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-vet-emergency-alert__text h4 {
    margin: 0 0 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    color: #9f1239;
    letter-spacing: -0.3px;
}

.tc-vet-emergency-alert__text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.tc-vet-emergency-alert__text strong {
    color: #881337;
    font-weight: 700;
}

.tc-vet-emergency-alert__text u {
    text-decoration-color: #e11d48;
    text-underline-offset: 3px;
    font-weight: 700;
    color: #9f1239;
}

@media (max-width: 640px) {
    .tc-vet-emergency-alert {
        padding: 18px 18px;
    }
    .tc-vet-emergency-alert__body {
        flex-direction: column;
        gap: 10px;
    }
}

