* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 480px;
    width: 100%;
    background: white;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Logo no topo */
.logo-header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-header img {
    height: 120px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
}

/* Barra de progresso */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    height: 100%;
    background-color: #28a745;
    transition: width 0.8s ease;
    border-radius: 10px;
}

/* Imagem principal */
.main-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Texto de atenção */
.attention-text {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attention-text p {
    font-size: 16px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 0;
}

.attention-text strong {
    color: #000;
}

.highlight {
    color: #2b883f;
    font-weight: 600;
}

/* Botão CTA */
.cta-button {
    width: 100%;
    padding: 18px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .attention-text p {
        font-size: 15px;
    }

    .cta-button {
        font-size: 16px;
        padding: 16px;
    }
}

/* Estilos para Step 2 */
.question-header {
    text-align: center;
    margin-bottom: 20px;
}

.question-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.highlight-green {
    color: #2b883f;
}

.subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}

.options-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.option-card-image {
    background: #f8f9fa;
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card-image:hover {
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.option-card-image.selected {
    border-color: #28a745;
    background: #e8f5e9;
}

.option-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #f8f9fa;
}

.option-card-image.selected .option-label {
    background: #e8f5e9;
}

.option-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.radio-circle {
    width: 22px;
    height: 22px;
    border: 2px solid #28a745;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.option-card-image.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
}

@media (max-width: 480px) {
    .question-header h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 14px;
    }

    .option-text {
        font-size: 14px;
    }

    .options-grid-2col {
        gap: 10px;
    }

    .option-label {
        padding: 10px 12px;
    }
}

/* Estilos para Step 3 - Lista vertical */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.option-card-horizontal {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #e8f5e9;
    border: 3px solid #d4edda;
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card-horizontal:hover {
    border-color: #28a745;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.option-card-horizontal.selected {
    border-color: #28a745;
    background: #d4edda;
}

.option-image-small {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.option-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.option-card-horizontal .option-text {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.option-card-horizontal .radio-circle {
    margin-left: auto;
}

.option-card-horizontal.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
}

@media (max-width: 480px) {
    .option-image-small {
        width: 50px;
        height: 50px;
    }

    .option-card-horizontal .option-text {
        font-size: 15px;
    }
}

/* Estilos para Step 5 - Opções simples sem imagem */
.question-image {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.question-image img {
    width: 100%;
    height: auto;
    display: block;
}

.options-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.option-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e8f5e9;
    border: 3px solid #d4edda;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-simple:hover {
    border-color: #28a745;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.option-simple.selected {
    border-color: #28a745;
    background: #d4edda;
}

.option-simple .option-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.option-simple.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
}

@media (max-width: 480px) {
    .option-simple .option-text {
        font-size: 15px;
    }

    .option-simple {
        padding: 12px 16px;
    }
}

/* Estilos para Step 6 - Resultado */
.result-header {
    text-align: center;
    margin-bottom: 25px;
}

.result-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.result-card {
    background: linear-gradient(135deg, #1a3a1a 0%, #0d2818 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #2b883f, #28a745);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.result-badge {
    text-align: center;
    margin-bottom: 20px;
}

.result-badge span {
    display: inline-block;
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-section {
    margin-bottom: 25px;
}

.risk-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.risk-label span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.risk-percentage {
    color: #ff4757 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.risk-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.risk-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4757, #ff6348);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

.risk-status {
    color: #ff4757;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.indicators {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.indicator-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.indicator-content {
    flex-grow: 1;
}

.indicator-label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.indicator-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
}

.indicator-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #2b883f);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease, opacity 0.5s ease;
    opacity: 0;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}

.indicator-value {
    color: #28a745;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.result-footer {
    background: rgba(40, 167, 69, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.result-footer p {
    color: #e0e0e0;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (max-width: 480px) {
    .result-header h1 {
        font-size: 22px;
    }

    .result-card {
        padding: 20px;
    }

    .indicator {
        padding: 12px;
    }

    .indicator-icon {
        font-size: 24px;
    }

    .indicator-label {
        font-size: 12px;
    }
}

/* Estilos para Step 6 - Opções com emoji e seta */
.options-emoji {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.option-emoji-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #e8f5e9;
    border: 2px solid #d4edda;
    border-radius: 16px;
    padding: 16px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-emoji-card:hover {
    border-color: #28a745;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.option-emoji-card.selected {
    border-color: #28a745;
    background: #d4edda;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.emoji-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-emoji-card .option-text {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.arrow-icon {
    font-size: 24px;
    color: #28a745;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.option-emoji-card:hover .arrow-icon {
    transform: translateX(4px);
}

.option-emoji-card.selected .arrow-icon {
    transform: translateX(6px);
}

@media (max-width: 480px) {
    .emoji-icon {
        font-size: 28px;
        width: 36px;
        height: 36px;
    }

    .option-emoji-card .option-text {
        font-size: 15px;
    }

    .option-emoji-card {
        padding: 14px 16px;
    }

    .arrow-icon {
        font-size: 22px;
    }
}

/* Estilos para Step 13 - Feedbacks */
.feedback-header {
    text-align: center;
    margin-bottom: 25px;
}

.feedback-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.feedbacks-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.feedback-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
    transform: translateY(-2px);
}

.feedback-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feedback-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #28a745;
}

.feedback-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.feedback-meta {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.stars {
    font-size: 14px;
    margin-top: 4px;
    letter-spacing: 2px;
}

.feedback-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    font-style: italic;
}

@media (max-width: 480px) {
    .feedback-header h1 {
        font-size: 22px;
    }

    .feedback-card {
        padding: 16px;
    }

    .feedback-profile img {
        width: 60px;
        height: 60px;
    }

    .feedback-info h3 {
        font-size: 15px;
    }

    .feedback-text {
        font-size: 14px;
    }
}

/* Estilos para Step 15 - Protocolo */
.protocol-page {
    background: #fff;
    min-height: 100vh;
}

.protocol-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.protocol-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.protocol-header h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #000;
}

.protocol-subtitle {
    color: #28a745;
    font-size: 14px;
    font-weight: 600;
}

.protocol-section {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #28a745;
}

/* Diagnóstico */
.diagnosis-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.diagnosis-item {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.diagnosis-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.diagnosis-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.diagnosis-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #2b883f);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.8s ease;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.6);
}

.diagnosis-value {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: #28a745;
    margin: 0;
}

/* Protocolo Cards */
.protocol-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.protocol-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #e8f5e9;
    border-left: 4px solid #28a745;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.protocol-card i {
    color: #28a745;
    font-size: 20px;
    flex-shrink: 0;
}

.protocol-card:hover {
    box-shadow: 0 5px 16px rgba(40, 167, 69, 0.2);
    transform: translateX(4px);
    border-left-width: 6px;
}

.protocol-card:hover i {
    transform: scale(1.1);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.benefit-item {
    background: linear-gradient(135deg, #e8f5e9 0%, #d4edda 100%);
    border: 2px solid #28a745;
    padding: 16px 12px;
    border-radius: 12px;
    font-size: 13px;
    text-align: center;
    color: #333;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #2b883f);
}

.benefit-item:hover {
    box-shadow: 0 5px 16px rgba(40, 167, 69, 0.25);
    transform: translateY(-4px) scale(1.02);
}

.benefit-icon {
    font-size: 28px;
    color: #28a745;
    display: block;
}

.benefit-text {
    font-size: 12px;
    line-height: 1.3;
}

/* Garantia */
.guarantee-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #d4edda 100%);
    border: 3px solid #28a745;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.guarantee-content {
    position: relative;
    z-index: 1;
}

.guarantee-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: block;
}

.guarantee-badge {
    font-size: 22px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guarantee-text {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Preço */
.price-section {
    background: #fff;
    border: 3px solid #28a745;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(40, 167, 69, 0.1);
    overflow: hidden;
}

.price-header {
    background: #28a745;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.price-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
}

.price-left {
    text-align: left;
    flex: 1;
}

.price-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.price-right {
    text-align: right;
    background: #f5f5f5;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.price-from {
    font-size: 12px;
    color: #999;
    margin: 0 0 2px 0;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1;
}

.price-installment {
    font-size: 12px;
    color: #666;
    margin: 2px 0 0 0;
}

.cta-button-large {
    width: calc(100% - 40px);
    margin: 0 20px 15px 20px;
    padding: 16px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.6);
    background: #2b883f;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px 15px 20px;
    background: #fff;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.badge-icon {
    font-size: 20px;
    color: #28a745;
}

.badge-text {
    text-align: left;
    line-height: 1.2;
}

.badge-text strong {
    color: #000;
    font-weight: 700;
}

/* FAQ */
.faq-section {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: #28a745;
    box-shadow: 0 5px 16px rgba(40, 167, 69, 0.2);
    transform: translateY(-1px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #000;
}

.faq-icon {
    font-size: 24px;
    color: #28a745;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 12px;
}

/* Disclaimer */
.disclaimer {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer p {
    font-size: 11px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .protocol-header h1 {
        font-size: 24px;
    }

    .price-title {
        font-size: 14px;
    }

    .price-value {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: row !important;
        padding: 18px 20px !important;
        gap: 15px !important;
        justify-content: center !important;
    }

    .badge-item {
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 10px !important;
        flex: 0 0 auto !important;
        width: auto !important;
    }

    .badge-icon {
        font-size: 26px !important;
        margin-bottom: 4px !important;
    }

    .badge-text {
        text-align: center !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
    }

    .badge-text strong {
        font-size: 11px !important;
        display: block !important;
    }
}

/* Carrossel de Depoimentos */
.testimonials-section {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    aspect-ratio: 720 / 1356;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 500%; /* 5 slides */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 20%; /* 100% / 5 slides */
    height: 100%;
    flex-shrink: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(40, 167, 69, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-button:hover {
    background: #28a745;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #999;
}

.carousel-dot.active {
    background: #28a745;
    width: 30px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: #28a745;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .carousel-container {
        max-width: 100%;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .carousel-button.prev {
        left: 5px;
    }

    .carousel-button.next {
        right: 5px;
    }
}

/* Contador de Tempo */
.countdown-section {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    border: 3px solid #ff4757;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 71, 87, 0.7);
    }
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.countdown-header i {
    font-size: 20px;
    animation: tick 1s ease-in-out infinite;
}

@keyframes tick {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.countdown-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.countdown-warning {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 10px 16px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 32px;
    }

    .countdown-separator {
        font-size: 32px;
    }

    .countdown-header {
        font-size: 14px;
    }

    .countdown-warning {
        font-size: 12px;
    }
}

/* VSL Mockup */
.vsl-section {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.vsl-mockup {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.vsl-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* Proporção 9:16 (vertical) */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.vsl-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 12px 0 0 0;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .vsl-mockup {
        padding: 12px;
    }

    .vsl-caption {
        font-size: 13px;
    }
}

/* Animação pulsante para botões de compra */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(40, 167, 69, 0.6);
    }
}

.cta-button-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.cta-button-large-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Aplicar animação aos botões principais */
.cta-button.pulse,
.cta-button-large.pulse {
    animation: pulse 2s ease-in-out infinite;
}
