* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f0f2f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
}

.quiz-container {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step {
    text-align: center;
}

.step-image {
    margin-bottom: 30px;
}

.step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

h2 {
    color: #1a1a1a;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.question {
    margin-bottom: 30px;
}

.question p {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.5;
    font-weight: 500;
}

.options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.option.btn-funil {
    padding: 18px 25px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
    /* Estilo de botão com sombra verde */
    box-shadow: 0 4px 0 #1e9e2c;
}


.option {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px 25px;
    font-size: 18px;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
}

.option:hover {
    background-color: #f8f9fa;
    border-color: #007bff;
    transform: translateY(-2px);
}

.option.selected {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.result-content {
    text-align: center;
    padding: 20px;
}

.result-content h2 {
    color: #1a1a1a;
    font-size: 32px;
    margin-bottom: 20px;
}

.result-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

.download-btn {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.download-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

@media (max-width: 768px) {
    .quiz-container {
        padding: 20px;
    }

    h2 {
        font-size: 24px;
    }

    .question p {
        font-size: 18px;
    }

    .option {
        font-size: 16px;
        padding: 15px 20px;
    }

    .download-btn {
        padding: 15px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .quiz-container {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
    }

    .question p {
        font-size: 16px;
    }

    .option {
        font-size: 14px;
        padding: 12px 15px;
    }
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: #eafbe7;
    border-radius: 6px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}
.progress {
    width: 12%; /* 1 de 13 etapas */
    height: 6px;
    background: #2ecc40;
    border-radius: 6px;
    transition: width 0.3s;
    position: absolute;
    top: 9px;
    left: 0;
}
.progress-percent {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-size: 14px;
    color: #1a7f37;
    font-weight: 700;
    height: 24px;
    line-height: 24px;
    z-index: 2;
    letter-spacing: 1px;
}

.alert-red {
    background: #e53935;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 18px 16px 10px 16px;
    margin-bottom: 22px;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(229,57,53,0.08);
    text-align: center;
    line-height: 1.3;
}
.alert-red span {
    font-weight: 400;
    font-size: 15px;
    display: block;
    margin-top: 6px;
}

.main-copy {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.3;
}
.main-copy .green {
    color: #2ecc40;
    font-weight: 700;
}
.main-copy .money {
    color: #009e0f;
    font-weight: 700;
}
.main-copy .calma {
    color: #111;
    font-size: 18px;
    font-weight: 400;
}
.main-copy .red {
    color: #e53935;
    font-weight: 700;
}
.subtitle {
    color: #111;
    font-size: 18px;
    margin-bottom: 18px;
    text-align: center;
}

.explicacao {
    color: #111;
    font-size: 15px;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.4;
}

.btn-funil {
    background: #2ecc40;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 20px 0;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 1px auto; /* Reduzido de 18px para 8px */
    box-shadow: 0 4px 0 #1e9e2c;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}



.btn-funil:hover {
    background: #27ae38;
    box-shadow: 0 6px 12px rgba(46,204,64,0.15);
    transform: translateY(-2px);
}

.texto-cinza {
    color: #888;
    font-size: 16px;
    margin-top: 18px;
    text-align: center;
}

.step2-img {
    margin-bottom: 18px;
}

.beneficios {
    list-style: none;
    padding: 0;
    margin: 18px 0 18px 0;
    text-align: left;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.beneficios li {
    font-size: 16px;
    color: #222;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.destaque-cta {
    background: #eafbe7;
    border-radius: 10px;
    padding: 16px 18px;
    margin: 0 auto 18px auto;
    max-width: 420px;
    font-size: 16px;
    color: #222;
    text-align: left;
    box-shadow: 0 2px 8px rgba(46,204,64,0.04);
    font-weight: 500;
}
.destaque-cta b {
    color: #009e0f;
    font-weight: 700;
}
.destaque-cta i {
    font-style: italic;
    color: #222;
}

@media (max-width: 600px) {
    .main-copy { font-size: 18px; }
    .btn-funil { font-size: 16px; padding: 16px 0; }
    .alert-red { font-size: 15px; }
    .subtitle, .explicacao, .texto-cinza { font-size: 14px; }
    .beneficios li, .destaque-cta { font-size: 14px; }
    .destaque-cta { padding: 12px 10px; }
}

.pergunta-destaque {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 32px;
    margin-top: 10px;
    line-height: 1.3;
}

.step3-img {
    margin-bottom: 18px;
}

.btn-azul {
    background: #2979ff;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 20px 0;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 14px auto;
    box-shadow: 0 4px 0 #1856b3;
    display: block;
    letter-spacing: 1px;
    text-transform: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-azul:hover {
    background: #1565c0;
    box-shadow: 0 6px 12px rgba(41,121,255,0.15);
    transform: translateY(-2px);
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .pergunta-destaque { font-size: 16px; }
    .btn-azul, .btn-funil { font-size: 15px; padding: 14px 0; }
}

.headline-verde {
    background: #2ecc40;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    padding: 18px 16px;
    margin-bottom: 22px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(46,204,64,0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step4-img {
    margin-bottom: 18px;
}

.explicacao-4 {
    margin: 28px auto 18px auto;
    font-size: 17px;
    color: #111;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}
.explicacao-4 b {
    font-weight: 700;
}
.explicacao-4 .red {
    color: #e53935;
    font-weight: 700;
}

.btn-explicacao {
    margin-bottom: 14px;
    background: #43d86e;
    box-shadow: 0 4px 0 #1e9e2c;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 0;
}

@media (max-width: 600px) {
    .headline-verde { font-size: 15px; padding: 12px 8px; }
    .explicacao-4 { font-size: 14px; }
    .btn-explicacao { font-size: 14px; padding: 14px 0; }
}

.headline-verde-claro {
    background: #eafbe7;
    color: #1a7f37;
    font-size: 19px;
    font-weight: 700;
    border-radius: 12px;
    padding: 16px 14px;
    margin-bottom: 22px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(46,204,64,0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1.5px solid #2ecc40;
}

.step5-img {
    margin-bottom: 18px;
}

.explicacao-5 {
    margin: 18px auto 18px auto;
    font-size: 17px;
    color: #111;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}
.explicacao-5 .money {
    color: #009e0f;
    font-weight: 700;
}

.explicacao-5b {
    margin: 28px auto 18px auto;
    font-size: 16px;
    color: #111;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}
.explicacao-5b b {
    font-weight: 700;
}
.explicacao-5b .cinza {
    color: #888;
    font-weight: 400;
}

@media (max-width: 600px) {
    .headline-verde-claro { font-size: 14px; padding: 10px 6px; }
    .explicacao-5, .explicacao-5b { font-size: 13px; }
}

.headline-centralizada {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.3;
}

.bloco-comparativo {
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.caixa-vermelha {
    background: #ffeaea;
    color: #e53935;
    border-radius: 10px;
    padding: 16px 18px 10px 18px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(229,57,53,0.04);
    text-align: left;
}
.caixa-vermelha .red {
    color: #e53935;
    font-weight: 700;
}
.caixa-vermelha .descricao {
    color: #b71c1c;
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

.caixa-verde {
    background: #eafbe7;
    color: #1a7f37;
    border-radius: 10px;
    padding: 16px 18px 10px 18px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(46,204,64,0.04);
    text-align: left;
}
.caixa-verde b {
    color: #009e0f;
    font-weight: 700;
}
.caixa-verde .descricao {
    color: #1a7f37;
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .headline-centralizada { font-size: 15px; }
    .bloco-comparativo { max-width: 98vw; }
    .caixa-vermelha, .caixa-verde { font-size: 13px; padding: 10px 8px 7px 8px; }
    .caixa-vermelha .descricao, .caixa-verde .descricao { font-size: 12px; }
}

.headline-verde-7 {
    background: #2ecc40;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    padding: 16px 14px;
    margin-bottom: 22px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(46,204,64,0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.lista-3itens {
    margin-bottom: 22px;
}
.item-lista {
    background: #fff;
    border: 1.5px solid #eafbe7;
    border-radius: 10px;
    padding: 16px 18px 10px 18px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(46,204,64,0.04);
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.item-lista .check {
    color: #2ecc40;
    font-size: 18px;
    margin-right: 6px;
}
.item-lista .desc {
    color: #888;
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}
.step7-img {
    margin: 28px auto 18px auto;
    text-align: center;
}

.logo-oculto {
    text-align: center;
}
.headline-8 {
    color: #111;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}
.explicacao-8 {
    color: #111;
    font-size: 16px;
    text-align: center;
    margin-bottom: 18px;
}
.step8-img {
    margin: 18px auto 18px auto;
    text-align: center;
}
.pergunta-destaque-8 {
    color: #111;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 24px 0 18px 0;
}

@media (max-width: 600px) {
    .headline-verde-7 { font-size: 15px; padding: 10px 6px; }
    .item-lista { font-size: 13px; padding: 10px 8px 7px 8px; }
    .item-lista .desc { font-size: 12px; }
    .headline-8 { font-size: 16px; }
    .explicacao-8 { font-size: 13px; }
    .pergunta-destaque-8 { font-size: 14px; }
}

.headline-9 {
    color: #111;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.subheadline-9 {
    color: #444;
    font-size: 15px;
    text-align: center;
    margin-bottom: 18px;
}
.lista-3itens-9 {
    margin-bottom: 18px;
}
.item-lista-9 {
    background: #fff;
    border: 1.5px solid #eafbe7;
    border-radius: 10px;
    padding: 16px 18px 10px 18px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(46,204,64,0.04);
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}
.item-lista-9 .check {
    color: #2ecc40;
    font-size: 18px;
    margin-right: 6px;
}
.explicacao-9 {
    color: #111;
    font-size: 16px;
    text-align: center;
    margin-bottom: 6px;
    font-weight: 700;
}
.explicacao-9b {
    color: #888;
    font-size: 15px;
    text-align: center;
    margin-bottom: 18px;
    font-style: italic;
}

.headline-10 {
    color: #111;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.3;
}
.grid-2x2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
    margin-bottom: 18px;
}
.grid-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 8px 8px 0 8px;
    text-align: center;
    width: 180px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.grid-item img {
    max-width: 100px;
    margin-bottom: 8px;
}
.grid-caption {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.caixa-azul-10 {
    background: #eaf1fb;
    color: #222;
    border-radius: 10px;
    padding: 18px 18px 10px 18px;
    margin: 24px auto 18px auto;
    font-size: 15px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(46,204,64,0.04);
}
.step10-img {
    margin: 18px auto 18px auto;
    text-align: center;
}

@media (max-width: 600px) {
    .headline-9, .headline-10 { font-size: 16px; }
    .item-lista-9 { font-size: 13px; padding: 10px 8px 7px 8px; }
    .grid-2x2 { gap: 8px 8px; }
    .grid-item { width: 46vw; min-height: 100px; }
    .grid-caption { font-size: 12px; }
    .caixa-azul-10 { font-size: 12px; padding: 10px 6px 7px 6px; }
} 

.caixa-azul-13 {
    background-color: #eaf4ff;
    border-left: 4px solid #005fcc;
    padding: 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    box-sizing: border-box;
}


.caixa-vermelha-13 {
    background-color: rgba(255, 77, 77, 0.15);    /* Vermelho claro mais suave para facilitar leitura */
    border-left: 4px solid rgba(204, 0, 0, 0.7);   /* Borda mais destacada */
    padding: 25px 20px;
    margin: 30px auto;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    color: #660000;                               /* Texto vermelho escuro */
    line-height: 1.7;
    max-width: 700px;
    box-sizing: border-box;
}

.caixa-vermelha-13 h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: bold;
}

.caixa-vermelha-13 p {
    margin-bottom: 15px;
}


.linha {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.check {
    font-size: 18px;
    line-height: 1.5;
    flex-shrink: 0;
    margin-top: 3px;
}

.texto {
    flex: 1;
}

.explicacao-13 {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    padding: 0 20px;
    box-sizing: border-box;
}

.explicacao-13-recado {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 22px;
    color: #333;
    line-height: 1.6;
    padding: 0 20px;
    box-sizing: border-box;
}

.caixa-verde-claro-13 {
    background-color: #e6fbe9;
    border-left: 4px solid #2e7d32;
    padding: 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #2e7d32;
    line-height: 1.6;
    max-width: 700px;
    margin: 30px auto;
    text-align: left;
    box-sizing: border-box;
}



.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    cursor: pointer;
}

.video-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
    display: none;
}

.video-container.active img {
    display: none;
}

.video-container.active iframe {
    display: block;
}

/* Responsividade para celulares */
@media (max-width: 600px) {
    .caixa-azul-13,
    .caixa-vermelha-13,
    .explicacao-13,
    .caixa-verde-claro-13 {
        padding: 15px;
        font-size: 15px;
    }

    .linha {
        align-items: flex-start;
    }

    .texto u {
        word-break: break-word;
    }

    .video-container {
        padding-top: 0;
        /*padding-bottom: 56.25%;*/
    }

}


.bonus-13 {
    max-width: 700px;
    margin: 30px auto;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.bonus-titulo {
    font-size: 22px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #222;
    margin-bottom: 20px;
}

.bonus-item {
    width: 100%;
}

.bonus-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.garantia-13 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;

}

.garantia {
    max-width: 350px;
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .bonus-titulo {
        font-size: 19px;
    }
    .explicacao-13-recado {
        font-size: 19px;
    }
    .garantia {
        max-width: 200px;
    }

}

.plan-container {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

.plan-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.discount-bar {
    background-color: #391fbd;
    color: white;
    font-weight: bold;
    padding: 8px;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
}

.plan-info {
    background-color: white;
    padding: 15px 10px;
    border-radius: 0 0 12px 12px;
}

.plan-title {
    font-size: 20px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.plan-price {
    font-size: 22px;
    color: #333;
}

.plan-price strong {
    font-size: 28px;
    font-weight: bold;
}

.plan-parcelado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.parcelas {
    font-size: 14px;
    color: #666;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 177, 79, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 177, 79, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 177, 79, 0);
  }
}

.cta-button {
  background-color: #00b14f;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  margin-top: 15px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.cta-button:hover {
  background-color: #009944;
}

.note {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

.highlight-text {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.highlight-text .popular {
    color: #FF6600; /* Laranja forte */
}




.container-grafico {
  display: flex;
  gap: 60px;
  justify-content: center; /* Alinha os filhos horizontalmente */
  align-items: center; /* Alinha verticalmente, opcional */
  margin: 0 auto;       /* Centraliza o container na página */
  width: fit-content;   /* Evita ocupar 100% da largura */
}

.card {
  text-align: center;
}

.circle-chart {
  width: 120px;
  height: 120px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block; /* garante que margin auto funcione */
}

.circle-bg {
  stroke: #eee;
  stroke-width: 10;
}

.circle-progress {
  stroke-width: 10;
  stroke-linecap: round;
  fill: none;
  transform: rotate(-90deg);
  transform-origin: center;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  animation: progress-animation 2s forwards;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Animações individuais */
.circle-30 {
  stroke: red;
  animation: progress-animation-30 2s ease-out forwards;
}

.circle-100 {
  stroke: green;
  animation: progress-animation-100 2s ease-out forwards;
}

@keyframes progress-animation-30 {
  to {
    stroke-dashoffset: calc(314 - (314 * 30 / 100));
  }
}

@keyframes progress-animation-100 {
  to {
    stroke-dashoffset: calc(314 - (314 * 100 / 100));
  }
}

.label {
  font-size: 15px;
  margin-top: 10px;
}

.label span {
  color: #ff6600;
  font-weight: bold;
}


 .footer-top {
    display: flex;
    justify-content: center;
    padding: 30px 10px;
    gap: 60px;
    color: #363636;
  }
  .footer-top > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-logo {
    text-align: center;
    color: #363636;
  }
  .footer-logo img {
    width: 80px;
    margin-bottom: 6px;
  }
  .footer-top h4 {
    margin: 0 0 4px 0;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #363636;
  }
  .footer-top p {
    margin: 0;
    font-size: 13px;
    color: #363636;
  }
  .footer-bottom {
    background-color: #344165;
    color: white;
    font-size: 12px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
  }
  .footer-bottom a {
    color: white;
    text-decoration: none;
  }
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  @media(max-width: 600px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 6px;
    }
  }


    h2 {
      font-size: 22px;
      text-align: center;
      margin-bottom: 30px;
    }

    h2 u {
      color: #000;
    }


.testimonial-container {
  position: relative;
  max-width: 360px;
  width: 100%;
  background: white;
  padding: 20px 40px; /* mais espaço horizontal para setas */
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 14px;
  margin: 0 auto;
  text-align: center;
}


.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial img {
  width: 100%;
  height: auto;
  border: 2px solid #ffff;
  border-radius: 10px;
}

.testimonial span {
  display: block;
  font-weight: bold;
  margin-top: 15px;
  color: #333;
}

.dots {
  text-align: center;
  margin-top: 18px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot:hover {
  background-color: #999;
}

.dot.active {
  background-color: #000;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  transition: background-color 0.3s;
}

.arrow.left {
  left: 10px;  /* dentro do padding do container */
  display: block;
}

.arrow.right {
  right: 10px;
  display: block;
}

.arrow:hover {
  background-color: rgba(0,0,0,0.7);
}

