/* DJ TEAM - DARK MODE IDENTITY */
:root {
    /* Cores */
    --bg-color: #050505;
    --card-bg: #111111;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;

    /* Azul Elétrico DJ TEAM */
    --accent-color: #0066FF;
    --accent-glow: rgba(0, 102, 255, 0.4);
    --accent-dark: #004ecc;

    /* Sponsor Colors */
    --growth-red: #D21F1F;
    --growth-bg: #1A1A1A;

    /* Layout */
    --max-width: 600px;
    --radius-lg: 16px;
    --radius-md: 8px;

    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image: radial-gradient(circle at 50% 0%, #1a2236 0%, #050505 60%);
    background-attachment: fixed;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.profile-highlight {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-color), #000);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.3);
}

.profile-img-hero {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    /* Focar no rosto/torso */
    border: 3px solid var(--bg-color);
    background-color: #000;
}

.logo-container {
    margin-bottom: 24px;
}

.brand-logo {
    max-height: 80px;
    /* Ajuste conforme o logo */
    margin: 0 auto;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-title .divider {
    color: var(--accent-color);
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: var(--text-secondary);
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px var(--accent-color));
}

/* CARDS GERAIS */
.card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid #222;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.card-text p {
    margin-bottom: 16px;
    color: #CCC;
    font-size: 0.95rem;
}

/* Card Consultoria (Destaque) */
.card-consultoria {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.05);
}

.card-consultoria .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

/* LISTA DE FUNCIONALIDADES (PLANILHAS) */
.features-list {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.features-list li {
    background: #1A1A1A;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.features-list li i {
    width: 14px;
    height: 14px;
    color: var(--accent-color);
}

/* BOTÕES */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 8px;
    /* Mais quadrado, menos arredondado que o anterior, mais agressivo */
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: rgba(0, 102, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

/* PATROCINADORES */
.sponsors-section {
    margin: 40px 0;
}

.section-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-align: center;
    opacity: 0.7;
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #151515;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    border: 1px solid #222;
    transition: 0.3s;
}

.sponsor-card:hover {
    background: #1A1A1A;
    border-color: #333;
}

.sponsor-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sponsor-logo {
    width: 60px;
    height: 60px;
    /* Quadrado ou circular */
    object-fit: contain;
    background: #000;
    border-radius: 8px;
    padding: 4px;
}

.sponsor-info {
    display: flex;
    flex-direction: column;
}

/* Growth Style */
.sponsor-growth {
    border-left: 3px solid var(--growth-red);
    background: linear-gradient(90deg, #151515 0%, #1a0f0f 100%);
}

.sponsor-growth:hover {
    box-shadow: 0 0 20px rgba(210, 31, 31, 0.15);
    border-color: var(--growth-red);
}

.discount-badge {
    color: var(--growth-red);
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.coupon-code {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Pharma Style */
.sponsor-pharma {
    border-left: 3px solid #00AA88;
    /* Verde água ou a cor do logo */
}

.sponsor-name {
    color: white;
    font-weight: 600;
}

.sponsor-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.link-icon {
    color: #444;
}

.sponsor-card:hover .link-icon {
    color: white;
}

/* SOBRE */
.about-section {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #222;
}

.about-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    color: #444;
}

@media (min-width: 768px) {
    :root {
        --max-width: 800px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .card-content {
        padding: 40px;
    }
}