:root {
    --primary: #3782cc;
    --secondary: #2a3a7c;
    --light-bg: #f8f9fa;
    --business-color: #3782cc;
    --health-color: #28a745;
}

/* ------------------------------ */
/* HERO SECTION                   */
/* ------------------------------ */
.hero-section {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a3a7c 100%);
    color: white;
    padding: 80px 0;
}

/* ------------------------------ */
/* BENEFIT CARDS                  */
/* ------------------------------ */
.benefit-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ------------------------------ */
/* ICON CONTAINERS                */
/* ------------------------------ */
.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.business-icon {
    background-color: rgba(55, 130, 204, 0.1);
    color: var(--business-color);
}

.health-icon {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--health-color);
}

/* ------------------------------ */
/* FEATURE LIST                   */
/* ------------------------------ */
.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--business-color);
    margin-right: 10px;
}

/* ------------------------------ */
/* HEALTH SECTION                 */
/* ------------------------------ */
.health-section {
    background-color: var(--light-bg);
    border-radius: 10px;
}

/* ------------------------------ */
/* CARDS (FINANCE / SALES)        */
/* ------------------------------ */
.text_card {
    font-size: 1.05rem;
}

.card {
    border-radius: 10px;
}

/* ------------------------------ */
/* VIDEO BUTTON STYLE             */
/* ------------------------------ */
.botao {
    display: inline-block;
    background-color: var(--primary);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: 0.3s ease;
    text-decoration: none;
}

.botao:hover {
    background-color: var(--secondary);
    color: #fff !important;
}


/* ------------------------------ */
/* RESPONSIVE                     */
/* ------------------------------ */
@media (max-width: 768px) {

    .hero-section {
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p.lead {
        font-size: 1.1rem;
    }
}
