/* CSS Personalizado para Pantalla de Suspensión v2 - Orbital Plus */
:root {
    --bg-color: #0d1117;
    --card-bg: rgba(22, 27, 34, 0.88);
    --border-color: #30363d;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --accent-orange: #d97706;
    --accent-orange-bg: rgba(217, 119, 6, 0.15);
    --accent-blue: #38bdf8;
    --accent-blue-hover: #0284c7;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1da851;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Fondo dinámico de estrellas/partículas */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: twinkle infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

/* Estructura de la Tarjeta */
.suspension-card {
    position: relative;
    z-index: 10;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    padding: 36px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(217, 119, 6, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    background: var(--accent-orange-bg);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-icon {
    width: 26px;
    height: 26px;
    color: var(--accent-orange);
}

.status-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-orange);
    background: var(--accent-orange-bg);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

/* Cuerpo de la tarjeta */
.title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 22px;
}

.info-box {
    background: rgba(13, 17, 23, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 22px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.86rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
    gap: 12px;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-secondary);
    white-space: nowrap;
}

.info-value {
    font-weight: 500;
    color: var(--text-primary);
    text-align: right;
}

.text-warning {
    color: var(--accent-orange);
}

.code-ref {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
}

.description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.description.highlight-text {
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 26px;
}

/* Pie de tarjeta, Logo y Botones */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.provider-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.managed-by {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo {
    max-height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #062b12;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-email {
    background-color: rgba(56, 189, 248, 0.12);
    color: var(--accent-blue);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.btn-email:hover {
    background-color: var(--accent-blue);
    color: #0f172a;
    transform: translateY(-1px);
}

/* Responsivo */
@media (max-width: 580px) {
    .suspension-card {
        padding: 24px;
    }
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-actions {
        width: 100%;
        justify-content: stretch;
    }
    .contact-btn {
        flex: 1;
        justify-content: center;
    }
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .info-value {
        text-align: left;
    }
}
