:root {
    --bg-color: #0b1121; /* Fundos escuros e tecnológicos */
    --surface-color: rgba(17, 24, 39, 0.7);
    --surface-border: rgba(255, 255, 255, 0.08);
    --primary-color: #00e6a8; /* Verde/Azul característico da Zettas */
    --primary-hover: #02cfa0;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.5);
    
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Background animado e sutil com padrão de dots */
    background-image: radial-gradient(rgba(0, 230, 168, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Efeito de Glow no fundo */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 230, 168, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 168, 230, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.dbc-container {
    width: 100%;
    max-width: 480px;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease-out forwards;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}



.logo {
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.4));
}

.profile-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.image-border {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-color), #0076e6);
    box-shadow: 0 8px 32px rgba(0, 230, 168, 0.25);
    animation: pulseGlow 3s infinite alternate;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-color);
}

.bio-section {
    margin-top: 1rem;
}

.name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
}

.title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* CTAs */
.actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #0b1121;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 230, 168, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 230, 168, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Value Props */
.value-prop {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--text-primary);
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 70%;
    width: 4px;
    background: var(--primary-color);
    border-radius: 4px;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateX(8px);
    background: rgba(40, 53, 76, 0.7);
    border-color: rgba(0, 230, 168, 0.3);
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 230, 168, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(0, 230, 168, 0.15);
}

.card-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.footer-logo {
    height: 45px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.slogan {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseGlow {
    from { box-shadow: 0 8px 32px rgba(0, 230, 168, 0.2); }
    to { box-shadow: 0 8px 32px rgba(0, 230, 168, 0.4); }
}
