:root {
    --bg-color: #ffffff;
    --surface-color: rgba(255, 255, 255, 0.95);
    --surface-border: rgba(0, 0, 0, 0.06);
    --primary-color: #F76D25;
    /* Laranja vibrante - cor principal do site */
    --primary-hover: #e06020;
    --primary-glow: rgba(247, 109, 37, 0.18);
    --secondary-color: #ff4d8d;
    /* Rosa vibrante - accent do site */
    --accent-lilac: #b788f2;
    /* Lilás - detalhes secundários */
    --text-primary: #2a2a2a;
    --text-secondary: #6b7280;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 24px rgba(247, 109, 37, 0.08);
    --section-bg: #f5efff;
    /* Lilás suave - fundo de blocos */

    --font-family: 'Poppins', sans-serif;
    --font-body: '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;
    position: relative;
    overflow-x: hidden;
}

/* Efeitos de Glow suaves no fundo */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(247, 109, 37, 0.06) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 77, 141, 0.05) 0%, transparent 55%);
    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;
}

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

.image-border {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 32px var(--primary-glow);
    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.85rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

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

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

/* CTAs */
.actions {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 3rem;
    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: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 1.15rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 109, 37, 0.35);
    filter: brightness(1.06);
}

.btn-whatsapp {
    background: #ffffff;
    color: #25d366;
    border: 2px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.08);
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15);
}

.btn-instagram {
    background: #ffffff;
    color: var(--secondary-color);
    border: 2px solid rgba(255, 77, 141, 0.25);
    box-shadow: 0 2px 12px rgba(255, 77, 141, 0.06);
}

.btn-instagram:hover {
    background: rgba(255, 77, 141, 0.04);
    border-color: rgba(255, 77, 141, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 141, 0.15);
}

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

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    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: linear-gradient(to bottom, var(--primary-color), var(--secondary-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: 24px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(247, 109, 37, 0.14);
    border-color: rgba(247, 109, 37, 0.2);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(247, 109, 37, 0.1), rgba(255, 77, 141, 0.08));
    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: linear-gradient(135deg, rgba(247, 109, 37, 0.18), rgba(255, 77, 141, 0.12));
}

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

.card-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    font-family: var(--font-body);
}

/* 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-brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slogan {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 400;
    font-style: italic;
}

/* 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(247, 109, 37, 0.15);
    }

    to {
        box-shadow: 0 8px 32px rgba(255, 77, 141, 0.25);
    }
}

/* Responsividade */
@media (max-width: 380px) {
    .dbc-container {
        padding: 2rem 1rem;
    }

    .name {
        font-size: 1.5rem;
    }

    .btn {
        padding: 1rem;
        font-size: 0.88rem;
    }
}