.duvidas-main {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    background: white;
    color: #171717;
    font-family: 'Inter', sans-serif;
}

.duvidas-wrap {
    padding: 150px 0 80px;
}

.duvidas-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.c5-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 24px;
    padding: clamp(36px, 8vw, 60px) clamp(20px, 6vw, 40px);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.c5-cta-title {
    margin: 0 0 15px;
    font-weight: 400;
    line-height: 1.1;
    font-size: clamp(2rem, 8vw, 3.5rem);
    letter-spacing: -0.03em;
}

.c5-cta-text {
    margin: 0 0 30px;
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.85;
}

.c5-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    align-content: start;
    align-items: start;
}

.c5-faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 24px 0;
    cursor: pointer;
}

.c5-faq-item:hover .c5-faq-question span {
    color: #171717;
}

.c5-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 1rem;
    color: #171717;
}

.c5-faq-question svg {
    flex-shrink: 0;
    color: #9a9a9a;
}

.c5-faq-answer {
    display: none;
    margin-top: 14px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.c5-chevron-up {
    display: none;
}

@media (max-width: 900px) {
    .duvidas-wrap {
        padding: 130px 0 60px;
    }

    .c5-faq {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

@property --c5-x1 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --c5-y1 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --c5-x2 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --c5-y2 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --c5-x3 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --c5-y3 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --c5-x4 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --c5-y4 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --c5-x5 { syntax: '<percentage>'; inherits: false; initial-value: 50%; }
@property --c5-y5 { syntax: '<percentage>'; inherits: false; initial-value: 50%; }
@property --c5-s1 { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --c5-s2 { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --c5-s3 { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --c5-s4 { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --c5-s5 { syntax: '<percentage>'; inherits: false; initial-value: 65%; }

.c5-animated-gradient {
    contain: paint;
    background-color: #1fa187;
    background-image:
        radial-gradient(circle at var(--c5-x1) var(--c5-y1), #b9f5e7 0px, transparent var(--c5-s1)),
        radial-gradient(circle at var(--c5-x2) var(--c5-y2), #177a67 0px, transparent var(--c5-s2)),
        radial-gradient(circle at var(--c5-x3) var(--c5-y3), #6be0c4 0px, transparent var(--c5-s3)),
        radial-gradient(circle at var(--c5-x4) var(--c5-y4), #0b1512 0px, transparent var(--c5-s4)),
        radial-gradient(circle at var(--c5-x5) var(--c5-y5), #14201d 0px, transparent var(--c5-s5));

    animation:
        c5-blob1 5s ease-in-out infinite,
        c5-blob2 6s ease-in-out infinite,
        c5-blob3 5.5s ease-in-out infinite,
        c5-blob4 6.5s ease-in-out infinite,
        c5-blob5 4s ease-in-out infinite;
}

@keyframes c5-blob1 {
    0%,100% { --c5-x1: 5%;  --c5-y1: 5%;  }
    25%     { --c5-x1: 45%; --c5-y1: 20%; }
    50%     { --c5-x1: 30%; --c5-y1: 55%; }
    75%     { --c5-x1: 0%;  --c5-y1: 30%; }
}
@keyframes c5-blob2 {
    0%,100% { --c5-x2: 95%; --c5-y2: 5%;  }
    33%     { --c5-x2: 55%; --c5-y2: 35%; }
    66%     { --c5-x2: 80%; --c5-y2: 65%; }
}
@keyframes c5-blob3 {
    0%,100% { --c5-x3: 5%;  --c5-y3: 95%; }
    40%     { --c5-x3: 45%; --c5-y3: 65%; }
    70%     { --c5-x3: 25%; --c5-y3: 100%; }
}
@keyframes c5-blob4 {
    0%,100% { --c5-x4: 95%; --c5-y4: 95%; }
    30%     { --c5-x4: 60%; --c5-y4: 70%; }
    60%     { --c5-x4: 100%; --c5-y4: 50%; }
}
@keyframes c5-blob5 {
    0%,100% { --c5-x5: 50%; --c5-y5: 50%; }
    25%     { --c5-x5: 70%; --c5-y5: 30%; }
    50%     { --c5-x5: 40%; --c5-y5: 70%; }
    75%     { --c5-x5: 30%; --c5-y5: 40%; }
}

@media (prefers-reduced-motion: reduce) {
    .c5-animated-gradient { animation: none; }
}

.c5-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #171717;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    padding: 8px 8px 8px 28px;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.25s ease;
}

.c5-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
    background: var(--verde);
}

.c5-cta-btn.botao--invertido {
    flex-direction: row-reverse;
}

.c5-cta-btn .botao__icone {
    width: 32px;
    height: 32px;
    background: white;
    color: #171717;
}

.c5-cta-btn:hover .botao__icone svg {
    transform: rotate(-45deg);
}
