:root {
    --primary-color: #002147;
    --accent-color: #0d6efd;
    --light-color: #f8f9fa;
    --text-dark: #333;
    --text-muted: #6c757d;
    --bg-light: #f5f7fa;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: var(--text-dark);
    scroll-behavior: smooth;
}
section {
    padding: 3rem 0;
}
.benefits-header {
    background: linear-gradient(135deg, var(--primary-color), #004a8f);
    color: #fff;
    padding: 4rem 1rem;
    text-align: center;
}
.benefits-header h1 {
    font-weight: 800;
    font-size: 2.75rem;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
}
.benefits-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}
.card {
    transition: var(--transition);
    border: none;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    background: #fff;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.card-body {
    padding: 2rem;
}
.card-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}
.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.bg-icon {
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hover-lift:hover {
    transform: translateY(-8px);
}
.btn-primary,
.btn-outline-primary {
    transition: var(--transition);
    font-weight: 500;
    border-radius: 50px;
}
.btn-primary:hover,
.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
}
section p.lead {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
}
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: #fff;
    border-radius: 0.5rem;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
}
.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}
.cta-btn-anim {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-btn-anim:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.whatsapp-icon {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s ease;
}
.whatsapp-icon:hover {
    transform: scale(1.1);
}
.whatsapp-icon i {
    color: #25d366;
}
@media (max-width: 768px) {
    .benefits-header h1 {
        font-size: 2rem;
    }
    section h2 {
        font-size: 1.75rem;
    }
    .card-body {
        padding: 1.5rem;
    }
    .btn {
        padding: 0.75rem 1.25rem;
    }
}
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.benefits-header {
    position: relative;
    background: linear-gradient(135deg, rgba(247, 249, 252, 0.9) 0%, rgba(240, 243, 248, 0.9) 100%);
}
.benefit-decoration-circle {
    animation: float 6s ease-in-out infinite;
}
.benefit-decoration-circle:nth-child(2) {
    animation-delay: 1s;
}
.divider path {
    stroke-dashoffset: 0;
    animation: dash 3s linear infinite;
}
@keyframes dash {
    to {
        stroke-dashoffset: -16;
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}