/* ========================================
   VARIÁVEIS E RESET
======================================== */
:root {
    --primary-color: #dc3545;
    --primary-dark: #b02a37;
    --secondary-color: #212529;
    --light-bg: #f8f9fa;
    --text-dark: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --transition: all 0.3s ease;
}
#mainNav{
    width:100%
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.terms-page {
    padding: 100px 0 50px;
    min-height: 100vh;
    background: #f8f9fa;
}

.terms-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #dc3545;
}

    .terms-header h1 {
        color: #212529;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .terms-header .last-update {
        color: #6c757d;
        font-size: 0.95rem;
    }

.terms-content h2 {
    color: #dc3545;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.terms-content h3 {
    color: #212529;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.terms-content strong {
    color: #212529;
    font-weight: 700;
}

.terms-content .numbered-item {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

    .highlight-box p {
        margin-bottom: 0;
        color: #856404;
        font-weight: 600;
    }

.back-button {
    display: inline-block;
    margin-bottom: 2rem;
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .back-button:hover {
        color: #b02a37;
        transform: translateX(-5px);
    }

@media (max-width: 768px) {
    .terms-container {
        padding: 2rem 1.5rem;
    }

    .terms-page {
        padding: 80px 0 30px;
    }
}
/* ========================================
   NAVBAR
======================================== */
.navbar {
    background: var(--primary-color) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

    .navbar.scrolled {
        padding: 0.5rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: rgba(255,255,255,0.8) !important;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--white);
        transition: var(--transition);
    }

    .navbar-nav .nav-link:hover::after {
        width: 80%;
    }

.btn-cta {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
}

    .btn-cta:hover {
        background: var(--light-bg) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding-top: 100px;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

    .hero-buttons .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

.hero-features .badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.7rem 1.2rem;
    margin: 0.3rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   SECTIONS
======================================== */
.section-padding {
    padding: 80px 0;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header .lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

.bg-light {
    background: var(--light-bg) !important;
}

/* ========================================
   STEP CARDS (Como Funciona)
======================================== */
.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
    }

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========================================
   BENEFIT ITEMS
======================================== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

    .benefit-item:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 25px rgba(220, 53, 69, 0.15);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    min-width: 60px;
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   EXAMPLE CARDS
======================================== */
.example-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    border-top: 5px solid var(--primary-color);
}

    .example-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
    }

.example-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.example-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.example-detail {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

    .example-detail strong {
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.5rem;
    }

    .example-detail p {
        margin: 0;
        color: var(--text-dark);
        font-size: 0.95rem;
    }

.example-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* ========================================
   PRICING CARDS
======================================== */
.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    height: 100%;
    margin-bottom: 2rem;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
    }

    .pricing-card.featured {
        border: 3px solid var(--primary-color);
        transform: scale(1.05);
    }

        .pricing-card.featured:hover {
            transform: scale(1.08) translateY(-10px);
        }

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-bg);
}

    .pricing-header h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

.pricing-price {
    margin: 1.5rem 0;
}

    .pricing-price .currency {
        font-size: 1.5rem;
        color: var(--text-light);
        vertical-align: top;
    }

    .pricing-price .amount {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .pricing-price .period {
        font-size: 1.2rem;
        color: var(--text-light);
    }

.pricing-discount {
    color: #28a745;
    font-weight: 600;
    margin: 0.5rem 0;
}

.pricing-installment {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .pricing-features li {
        padding: 0.8rem 0;
        color: var(--text-dark);
        border-bottom: 1px solid var(--light-bg);
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: #28a745;
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }

.pricing-card .btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

    .pricing-card .btn-block:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

/* ========================================
   ABOUT SECTION
======================================== */
.about-values {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

    .value-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(220, 53, 69, 0.2);
    }

    .value-item i {
        font-size: 1.8rem;
        color: var(--primary-color);
    }

    .value-item strong {
        color: var(--text-dark);
        font-size: 1.1rem;
    }

/* ========================================
   CONTACT CARDS
======================================== */
.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

    .contact-icon.whatsapp {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    }

    .contact-icon.facebook {
        background: linear-gradient(135deg, #1877f2 0%, #0c5cbf 100%);
    }

    .contact-icon.instagram {
        background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    }

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-card .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

    .contact-card .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

    .footer h5 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .footer p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 1rem;
    }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-5px);
        }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

.footer-contact {
    list-style: none;
    padding: 0;
}

    .footer-contact li {
        color: rgba(255,255,255,0.8);
        margin-bottom: 0.8rem;
    }

        .footer-contact li i {
            margin-right: 0.8rem;
            color: var(--white);
        }

.footer hr {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0 1rem;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none !important;
}

    .whatsapp-float i {
        text-decoration: none !important;
    }

    .whatsapp-float:hover {
        background: #128c7e;
        color: var(--white);
        transform: scale(1.1);
        text-decoration: none !important;
    }

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .about-values {
        flex-direction: column;
    }

    .value-item {
        justify-content: center;
    }
}

/* ========================================
   PRICING TOGGLE (Mensal/Anual)
======================================== */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

    .toggle-label.active {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b00 100%);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.4);
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 107, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(255, 107, 0, 0.6);
    }
}

/* Toggle Switch */
.pricing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

    .pricing-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 30px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: var(--transition);
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: var(--primary-color);
}

    input:checked + .slider:before {
        transform: translateX(30px);
    }

/* ========================================
   PRICING ENHANCEMENTS
======================================== */
.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-discount {
    color: #28a745 !important;
    font-weight: 700 !important;
    margin: 0.8rem 0 !important;
    font-size: 1rem !important;
}

    .pricing-discount i {
        color: #ff6b00;
        animation: fire-flicker 1.5s infinite;
    }

@keyframes fire-flicker {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.pulse-button {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
    }
}

.pricing-buttons {
    margin-top: 1.5rem;
}

    .pricing-buttons .btn-block {
        margin-bottom: 0.5rem;
    }

    .pricing-buttons .btn-sm {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

/* Popular Badge Enhancement */
.popular-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b00 100%);
    animation: shine 2s infinite;
}

@keyframes shine {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    }

    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
    }
}

/* Urgency Elements */
.urgency-timer {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
}

    .urgency-timer i {
        margin-right: 0.5rem;
        animation: blink 1s infinite;
    }

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.5;
    }
}

/* ========================================
   FAQ SECTION
======================================== */
.accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    transition: var(--transition);
}

    .accordion-item:hover {
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border: none;
    transition: var(--transition);
}

    .accordion-button:not(.collapsed) {
        background-color: var(--primary-color);
        color: var(--white);
        box-shadow: none;
    }

        .accordion-button:not(.collapsed) i {
            color: var(--white);
        }

    .accordion-button i {
        color: var(--primary-color);
        font-size: 1.2rem;
        transition: var(--transition);
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transition: var(--transition);
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg);
    }

.accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

    .accordion-body p {
        margin-bottom: 0.8rem;
    }

        .accordion-body p:last-child {
            margin-bottom: 0;
        }

    .accordion-body strong {
        color: var(--primary-color);
        font-weight: 700;
    }

/* ========================================
   VIDEO SECTION
======================================== */
.video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-wrapper {
    position: relative;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: var(--transition);
}

    .video-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    }

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

.video-benefits h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.4rem;
}

.problems-list,
.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .problems-list li,
    .advantages-list li {
        padding: 0.8rem 0;
        font-size: 1.05rem;
        line-height: 1.6;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: var(--transition);
    }

        .problems-list li:hover,
        .advantages-list li:hover {
            padding-left: 10px;
            background-color: rgba(0,0,0,0.02);
        }

        .problems-list li:last-child,
        .advantages-list li:last-child {
            border-bottom: none;
        }

    .problems-list i {
        color: #dc3545;
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }

    .advantages-list i {
        color: #28a745;
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }

    .problems-list strong,
    .advantages-list strong {
        color: var(--text-dark);
    }

/* Responsivo para vídeo */
@media (max-width: 991px) {
    .video-wrapper {
        margin-bottom: 2rem;
    }

    .video-container {
        padding-bottom: 75%; /* Ajuste para mobile */
    }
}
