:root {
    --primary-dark: #0f2e20;
    --primary-green: #276348;
    --subtitle-green: #4da373;
    --bg-color: #f6fbf8;
    --text-color: #3b4240;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 20px 45px rgba(39, 99, 72, 0.14);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    background: radial-gradient(100% 100% at 50% 0%, #ffffff 0%, var(--bg-color) 100%);
    background-attachment: fixed;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    -webkit-font-smoothing: antialiased;
}

.progress-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.back-btn {
    position: absolute;
    left: 2rem;
    top: 1.6rem;
    background: transparent;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.back-btn:hover {
    background-color: #f0fdf4;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.08em;
}

.progress-container {
    width: 100%;
    max-width: 600px;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-green);
    border-radius: 8px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    background: var(--primary-green);
    filter: blur(8px);
    opacity: 0.4;
    border-radius: inherit;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 4.5rem auto 0;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--subtitle-green);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    background-color: var(--primary-green);
    padding: 0.85rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.card-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.card:hover .card-icon {
    background: rgba(255, 255, 255, 0.35);
}

.footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    font-size: 0.85rem;
    color: #888888;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    .title {
        font-size: 1.5rem;
    }
    .card-image {
        height: 300px;
    }
    .card:hover {
        transform: translateY(-4px);
    }
}

/* Step 2 Styles */
.weight-card {
    background-color: #ffffff;
    border: 1px solid rgba(39, 99, 72, 0.1);
    box-shadow: var(--card-shadow);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 480px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.weight-display {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

#weight-value, #actual-weight-value, #height-value {
    font-size: 4rem;
    font-weight: 700;
}

.weight-unit {
    font-size: 1.8rem;
    font-weight: 600;
    margin-left: 0.2rem;
}

.weight-controls {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.circle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(39, 99, 72, 0.2);
    background: #ffffff;
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.circle-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(39, 99, 72, 0.15);
}

.circle-btn:active {
    transform: scale(0.92);
}

.dashed-line {
    border: none;
    border-top: 1.5px dashed rgba(48, 110, 83, 0.4);
    margin: 1.2rem 0;
}

.weight-limits {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.continue-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #173f2a 100%);
    box-shadow: 0 8px 20px rgba(39, 99, 72, 0.25);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    max-width: 400px;
}

.continue-btn:hover {
    opacity: 0.95;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 99, 72, 0.35);
}

.continue-btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(39, 99, 72, 0.2);
}

/* Step 3 Styles */
.body-types-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.body-card {
    background-color: var(--bg-color);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.body-card:hover {
    border-color: var(--subtitle-green);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.body-card-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    background-color: #f3f4f6;
    height: 180px;
}

.body-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body-card-content {
    padding-bottom: 0.5rem;
}

.body-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.body-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Step 5 Styles */
.testimonial-header {
    text-align: center;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.testimonial-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text h2 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--subtitle-green);
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonial-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.question-title {
    text-align: center;
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-btn:hover {
    border-color: var(--subtitle-green);
    background-color: #f8fafc;
}

.option-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emoji-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5f6eb;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.emoji-box-neutral {
    background-color: #f0f4f8;
}

.option-text {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    transition: all 0.2s;
}

.option-btn:hover .radio-circle {
    border-color: var(--subtitle-green);
}

@media (max-width: 600px) {
    .testimonial-container {
        flex-direction: column;
        text-align: left;
    }
}

/* Step 8 Analysis */
.analysis-card {
    background-color: var(--bg-color);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.analysis-header {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 3.5rem; /* space for marker */
}

.imc-track {
    position: relative;
    margin-bottom: 3.5rem; /* space for labels */
}

.imc-bar-container {
    height: 14px;
    background: linear-gradient(to right, #3b82f6 0%, #3b82f6 14%, #22c55e 14%, #22c55e 40%, #f59e0b 40%, #f59e0b 60%, #ef4444 60%, #ef4444 100%);
    border-radius: 8px;
}

.imc-marker {
    position: absolute;
    top: -35px;
    transform: translateX(-50%);
    background: #111827;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.imc-marker-line {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 18px; /* reaches the bar */
    background-color: #111827;
    transform: translateX(-50%);
}

.imc-labels {
    position: relative;
    width: 100%;
    height: 30px;
    margin-top: 8px;
}

.imc-lbl {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imc-lbl .num {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
}

.imc-lbl .txt {
    font-size: 0.7rem;
    color: #9ca3af;
    white-space: nowrap;
}

.imc-alert {
    display: flex;
    gap: 1rem;
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.imc-alert .alert-icon {
    font-size: 1.2rem;
}

.imc-alert p {
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.5;
}

.imc-alert p b {
    font-weight: 700;
}

.analysis-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.analysis-row:last-child {
    margin-bottom: 0;
}

.row-left {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.row-right {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Step 11 Info Rows */
.info-row {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.info-row .emoji-box {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
}

.info-text-block {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
}

.info-desc {
    font-size: 0.72rem;
    color: #6b7280;
    line-height: 1.3;
}

/* Animation classes for Step 11 */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Step 12 Info Split Card */
.info-split-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.info-split-text {
    flex: 1;
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.info-split-img {
    flex: 0 0 40%;
}

.info-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {
    .info-split-card {
        flex-direction: column-reverse; /* Usually images on top is better, but maybe column is fine */
    }
    .info-split-img {
        height: 220px;
    }
}

/* Testimonial Cards for Step 18 */
.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(48, 110, 83, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

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

.testimonial-content {
    padding: 1rem;
    text-align: center;
}

.testimonial-quote {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
    font-style: italic;
    line-height: 1.35;
}

.testimonial-name {
    font-size: 0.75rem;
    color: var(--subtitle-green);
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.testimonial-stars {
    color: #fbbf24; /* yellow/gold */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Interactivity: Premium Spinner */
.spinner {
    width: 65px;
    height: 65px;
    border: 5px solid rgba(39, 99, 72, 0.12);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    box-shadow: 0 0 20px rgba(39, 99, 72, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-wrapper {
    transition: opacity 0.4s ease;
}

/* Name Input Style */
.name-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-dark);
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.name-input::placeholder {
    color: #9ca3af;
}

.name-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(39, 99, 72, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Salespage Styles */
.success-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eaf5ef;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

/* Plan Timeline */
.plan-section {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    max-width: 650px;
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.plan-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-highlight {
    color: #44b58e;
}

.plan-desc {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.plan-desc strong {
    color: #111827;
}

.timeline-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 1rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 30%;
}

.timeline-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.circle-purple { background-color: #a78bfa; }
.circle-blue { background-color: #1d4ed8; }
.circle-green { background-color: #4ade80; }

.circle-num {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.circle-txt {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.timeline-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.timeline-weight {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.timeline-line {
    flex-grow: 1;
    height: 2px;
    background-color: #e5e7eb;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .timeline-circle {
        width: 60px; height: 60px;
    }
    .circle-num { font-size: 1.1rem; }
    .timeline-label { font-size: 0.75rem; }
    .timeline-weight { font-size: 0.85rem; }
    .timeline-container { padding: 0; }
    .timeline-line { margin-top: 30px; }
}

/* Resultados Reais Section */
.results-section {
    margin: 4rem auto 2rem auto;
    max-width: 800px;
    text-align: center;
}

.results-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.results-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 360px;
    margin: 0 auto;
}

.result-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 0.6rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.result-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #f3f4f6;
}

.result-image-container img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 6px;
    padding: 0.15rem 0.4rem;
    border-radius: 20px;
    font-size: 0.55rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    letter-spacing: 0.05em;
}

.tag-antes {
    left: 10px;
    background-color: #ef4444;
}

.tag-depois {
    right: 10px;
    background-color: #22c55e;
}

.star-icon {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.result-info {
    text-align: center;
}

.result-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.result-weight {
    font-size: 1.15rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.1rem;
}

.result-time {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .result-card {
        padding: 0.75rem;
    }
    .tag {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
        top: 6px;
    }
    .tag-antes { left: 6px; }
    .tag-depois { right: 6px; }
    .star-icon {
        width: 20px;
        height: 20px;
        top: -6px;
        right: -6px;
    }
    .result-weight {
        font-size: 1.15rem;
    }
    .result-name {
        font-size: 1rem;
    }
    .result-time {
        font-size: 0.75rem;
    }
}

/* Offer Section */
.offer-section {
    padding: 1rem;
    margin-bottom: 2rem;
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-header-tag {
    color: var(--subtitle-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.offer-header-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.offer-header-desc {
    color: #6b7280;
    font-size: 0.95rem;
}

.offer-card {
    position: relative;
    border: 2px solid var(--subtitle-green);
    border-radius: 12px;
    background: #fff;
    padding: 2.5rem 2rem 1.5rem;
    max-width: 550px;
    margin: 3rem auto 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.offer-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--subtitle-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(77, 163, 115, 0.3);
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.offer-title {
    color: var(--subtitle-green);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.offer-subtitle {
    color: #b45309; 
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.offer-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0;
}

.offer-benefits li {
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.check-icon {
    color: #374151;
    font-weight: bold;
    margin-right: 8px;
}

.offer-bonus {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}

.offer-bonus li {
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.offer-price-area {
    margin-bottom: 1.5rem;
}

.price-from {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.2rem;
}

.price-from strike {
    color: #9ca3af;
}

.price-to {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green); 
    margin-bottom: 0.2rem;
    line-height: 1;
}

.price-terms {
    font-size: 0.8rem;
    color: #4b5563;
}

.cta-button {
    background: #2f694e;
    color: #fff;
    width: 100%;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(47, 105, 78, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-button:hover {
    background: #21503a;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(47, 105, 78, 0.4);
}

.offer-guarantee {
    font-size: 0.75rem;
    color: #9ca3af;
}

.timer-banner {
    background: #ebf6ec; 
    color: var(--primary-dark);
    font-weight: 700;
    text-align: center;
    padding: 1.2rem;
    border-radius: 8px;
    max-width: 550px;
    margin: 0 auto 3rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.timer-banner span {
    color: var(--primary-dark);
}

/* Bonus Card */
.bonus-card {
    background: #fffcf2; /* very light yellow/beige */
    border: 1px solid #f5b041; /* orange/gold border */
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 550px;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 4px 15px rgba(245, 176, 65, 0.08); /* soft gold shadow */
}

.bonus-icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-top: 5px;
}

.bonus-content {
    text-align: left;
}

.bonus-tag {
    display: inline-block;
    background: #fef0cd; /* light yellow tag background */
    color: #92400e; /* dark brownish orange */
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.bonus-title {
    color: #b45309; /* burnt orange */
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.bonus-desc {
    color: #92400e; 
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.85;
}

/* Comparison Section */
.comparison-section {
    max-width: 550px;
    margin: 3.5rem auto;
    font-family: inherit;
}
.comparison-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}
.comparison-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Cost Table */
.cost-table {
    border: 1.5px solid #a7dfc6;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #cceadd;
    align-items: center;
}
.cost-header {
    background: #f9fafb;
    font-weight: 700;
    color: #60947e;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.cost-item {
    flex: 1;
    color: #374151;
    font-weight: 500;
    padding-right: 1rem;
}
.cost-item small {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.2rem;
}
.cost-price {
    font-weight: 700;
    text-align: right;
    max-width: 45%;
    line-height: 1.3;
}
.text-red {
    color: #ef4444;
}
.large-row {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.cost-total {
    background: #fdfaf2;
    color: #b45309;
    font-weight: 700;
    border-bottom: 1px solid #fde68a;
}
.cost-total .cost-price {
    color: #b45309;
}

/* Mounjaro Caseiro specific styling inside table */
.mounjaro-caseiro-cost {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 1rem;
    background: #eef9f2; 
    border-bottom: none;
    align-items: center;
}
.mc-left strong {
    color: var(--primary-dark);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.3rem;
}
.mc-left small {
    color: #6b7280;
    font-size: 0.65rem;
    display: block;
}
.mc-right {
    text-align: right;
}
.mc-right strong {
    color: var(--primary-dark);
    font-size: 1.2rem;
    display: block;
}
.mc-right small {
    color: #6b7280;
    font-size: 0.65rem;
    display: block;
    text-align: right;
}

/* Economy Box */
.economy-box {
    background: #1c5237; 
    color: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(28, 82, 55, 0.25);
}
.economy-box strong {
    font-size: 1.05rem;
    color: #fff;
}

/* Final CTA block */
.final-cta {
    text-align: center;
}
.final-cta-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.final-cta-price {
    font-size: 2.8rem;
    color: #1e5c6b; /* deep teal as in print */
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1;
}
.final-cta-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 0.8rem;
    background: #276749; /* dark green button */
    font-size: 1.15rem;
    padding: 1.2rem;
    box-shadow: 0 6px 15px rgba(39, 103, 73, 0.3);
}
.final-cta-btn:hover {
    background: #22543d;
    transform: translateY(-2px);
}
.final-cta-guarantee {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Guarantee Section */
.guarantee-section {
    background: #fffcf2; 
    border: 1.5px solid #f5b041;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    max-width: 550px;
    margin: 3rem auto 3rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(245, 176, 65, 0.08);
}

.guarantee-badge-img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.guarantee-title {
    font-size: 1.25rem;
    color: #115e59; 
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.guarantee-stars {
    color: #f59e0b;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1.2rem;
}

.guarantee-desc {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.guarantee-btn {
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto 0;
    background: #2f6b4d; 
    padding: 1.2rem;
    font-size: 1.1rem;
    box-shadow: none;
}
.guarantee-btn:hover {
    background: #25543c;
    transform: translateY(-2px);
}

/* Final Guarantee Visual */
.final-guarantee-visual {
    max-width: 550px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    text-align: center;
}
.fgv-title {
    color: #1e5c6b;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.fgv-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

/* Perguntas Frequentes (FAQ) */
.faq-section {
    max-width: 600px;
    margin: 4rem auto 2rem;
    padding: 0 1rem;
    font-family: 'Inter', sans-serif;
}
.faq-section-title {
    text-align: center;
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}
.faq-icon {
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.2rem;
}
.faq-answer p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 1.2rem;
    margin: 0;
}
