/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --bg: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 20px;
}

/* ============================================
   BACKGROUND CIRCLES (EFEITO GLASS)
   ============================================ */
.card-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -80px;
    left: -60px;
    animation: float 6s ease-in-out infinite;
}

.bg-circle-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: -60px;
    right: -40px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* ============================================
   CARD PRINCIPAL (GLASSMORPHISM)
   ============================================ */
.card {
    position: relative;
    z-index: 1;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FOTO DE PERFIL
   ============================================ */
.profile-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    animation: pulse-border 2s ease-in-out infinite;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--bg);
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
}

.status-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    border: 3px solid var(--bg);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
.name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.description strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 28px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-text {
    font-weight: 500;
}

/* ============================================
   BOTÃO CTA - WHATSAPP
   ============================================ */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Efeito de brilho no hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(37, 211, 102, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px -5px rgba(37, 211, 102, 0.4);
}

/* Ícone do WhatsApp */
.cta-icon {
    font-size: 1.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: scale(1.2) rotate(-10deg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-text {
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ============================================
   RESPONSIVO - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    .card-container {
        max-width: 480px;
    }

    .card {
        padding: 50px 40px;
        border-radius: 28px;
    }

    .profile-img {
        width: 140px;
        height: 140px;
    }

    .name {
        font-size: 2.2rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .description {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }

    .highlight-box {
        padding: 16px 22px;
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-button {
        padding: 18px 32px;
        font-size: 1.1rem;
        border-radius: 18px;
    }

    .cta-icon {
        font-size: 1.4rem;
    }

    .footer-text {
        font-size: 0.85rem;
        margin-top: 20px;
    }
}

/* ============================================
   RESPONSIVO - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .card-container {
        max-width: 520px;
    }

    .card {
        padding: 60px 50px;
        border-radius: 32px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
    }

    .profile-img {
        width: 150px;
        height: 150px;
        padding: 5px;
    }

    .name {
        font-size: 2.4rem;
    }

    .badge {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .description {
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 32px;
    }

    .highlight-box {
        padding: 18px 24px;
        font-size: 1.05rem;
        margin-bottom: 36px;
        border-radius: 14px;
    }

    .cta-button {
        padding: 20px 36px;
        font-size: 1.15rem;
        border-radius: 20px;
        gap: 12px;
    }

    .cta-icon {
        font-size: 1.5rem;
    }

    .footer-text {
        font-size: 0.9rem;
        margin-top: 24px;
    }
}

/* ============================================
   RESPONSIVO - TELAS PEQUENAS (320px-374px)
   ============================================ */
@media (max-width: 374px) {
    .card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .name {
        font-size: 1.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .description {
        font-size: 0.9rem;
    }

    .highlight-box {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 14px 22px;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    .cta-icon {
        font-size: 1.1rem;
    }
}