:root {
    --bg-base: #0a0612;
    --bg-card: rgba(22, 14, 38, 0.65);
    --bg-card-border: rgba(168, 85, 247, 0.18);
    --primary: #a855f7;
    --primary-dark: #7c3aed;
    --primary-light: #c084fc;
    --accent: #e9d5ff;
    --text: #f5f3ff;
    --text-muted: #b8a9d9;
    --text-dim: #7a6b94;
    --success: #22c55e;
    --whatsapp: #25d366;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html, body {
    height: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg-base);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.25), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(168, 85, 247, 0.18), transparent 50%),
        linear-gradient(180deg, #0a0612 0%, #120a24 100%);
    z-index: -2;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    top: -150px;
    left: -150px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7c3aed, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #c084fc, transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: -14s;
    opacity: 0.25;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    width: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--bg-card-border);
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow:
        0 25px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    position: relative;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent 70%);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.logo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}

.logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #fdba74;
    margin: 0 auto 24px;
    display: flex;
    width: fit-content;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #fb923c;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.6);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.6); }
    75%, 100% { box-shadow: 0 0 0 10px rgba(251, 146, 60, 0); }
}

h1 {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle strong {
    color: var(--primary-light);
    font-weight: 600;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.35);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.contact-card.phone .contact-icon {
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary-light);
}

.contact-card.email .contact-icon {
    background: rgba(192, 132, 252, 0.12);
    color: #c084fc;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1;
    min-width: 0;
}

.contact-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-arrow {
    flex-shrink: 0;
    color: var(--text-dim);
    transition: all 0.3s ease;
    z-index: 1;
}

.contact-arrow svg {
    width: 18px;
    height: 18px;
}

.contact-card:hover .contact-arrow {
    color: var(--primary-light);
    transform: translate(2px, -2px);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
    margin: 0 0 24px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    color: var(--text-dim);
    font-size: 13px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    opacity: 0.8;
}

.footer {
    margin-top: 32px;
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 32px 20px;
    }
    .card {
        padding: 40px 28px;
    }
    .orb-1 { width: 380px; height: 380px; }
    .orb-2 { width: 320px; height: 320px; }
    .orb-3 { width: 280px; height: 280px; }
}

@media (max-width: 560px) {
    .container {
        padding: 20px 14px;
    }
    .card {
        padding: 32px 20px;
        border-radius: 22px;
    }
    .logo-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    .status-badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 20px;
    }
    h1 {
        margin-bottom: 14px;
    }
    .subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .contact-card {
        padding: 14px 14px;
        gap: 12px;
        border-radius: 14px;
    }
    .contact-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    .contact-label {
        font-size: 11px;
    }
    .contact-value {
        font-size: 14px;
    }
    .footer {
        margin-top: 24px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 16px 10px;
    }
    .card {
        padding: 26px 16px;
        border-radius: 20px;
    }
    .logo-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    .contact-card {
        padding: 12px;
        gap: 10px;
    }
    .contact-icon {
        width: 38px;
        height: 38px;
    }
    .contact-value {
        font-size: 13px;
    }
    .contact-arrow {
        display: none;
    }
    h1 {
        font-size: 22px;
    }
}

@media (max-height: 680px) and (min-width: 561px) {
    .container {
        padding: 24px;
    }
    .card {
        padding: 32px 36px;
    }
    .logo-wrapper {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
    }
    .subtitle {
        margin-bottom: 24px;
    }
}

@media (hover: none) {
    .contact-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .orb, .logo-glow, .status-dot, .card {
        animation: none;
    }
    .contact-card {
        transition: none;
    }
}
