﻿:root {
    /* Design System Variables */
    --color-primary-green: #00C851;
    --color-secondary-pink: #E89CAE;
    --color-background-light: #FFFFFF;
    --color-card-background: #F5F5F5;
    --color-text-dark: #333333;
    --color-text-light: #FFFFFF;
    --color-alert-red: #FF3547;
    --color-info-blue: #33B5E5;

    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;

    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

#app {
    width: 100%;
    max-width: 400px;
    background-color: var(--color-background-light);
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg);
    position: relative;
    overflow-x: hidden;
}

.quiz-container {
    width: 100%;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-secondary-pink);
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-dark);
}

p {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

/* Header & Logo */
.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Welcome Screen Styles */
.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    min-height: 60vh;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 800;
    color: #E89CAE;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.welcome-subtitle {
    background: linear-gradient(135deg, #00C851 0%, #00E676 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.welcome-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 400px;
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #F8F8F8;
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
}

.welcome-feature i {
    color: #00C851;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.welcome-feature span {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.welcome-cta {
    font-size: 1.3rem !important;
    padding: 1.2rem 2.5rem !important;
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4) !important;
    animation: pulse-green 2s infinite, bounce 1s ease-in-out infinite !important;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 600px) {
    .welcome-title {
        font-size: 1.6rem;
    }

    .welcome-subtitle {
        font-size: 1rem;
    }

    .welcome-description {
        font-size: 1rem;
    }
}

/* Progress Bar */
.progress-container {
    width: 100%;
    margin-bottom: var(--spacing-lg);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.progress-track {
    width: 100%;
    height: 0.8rem;
    background-color: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--color-secondary-pink);
    width: 0%;
    transition: width 0.5s ease-in-out;
    border-radius: 10px;
}

/* Cards & Options */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    width: 100%;
}

.grid-2x3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    width: 100%;
}

.list-vertical {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.card-option,
.list-item {
    background-color: #FFE5F0;
    border: 2px solid #F5D5E0;
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.card-option:hover,
.list-item:hover {
    background-color: #FFB3D9;
    transform: translateY(-2px);
}

.card-option.selected,
.list-item.selected {
    background-color: #E89CAE;
    color: white;
    border-color: #C2185B;
}

.card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--spacing-sm);
    border: 2px solid var(--color-secondary-pink);
}

.card-label,
.list-text {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.card-option.selected .card-label,
.list-item.selected .list-text {
    color: white;
}

/* Image cards with text labels at bottom */
.image-card-label {
    background-color: rgba(255, 229, 240, 0.95);
    padding: 8px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
    width: 100%;
    margin-top: auto;
}

.card-option.selected .image-card-label {
    background-color: rgba(255, 20, 147, 0.95);
    color: white;
}

.card-option.selected .image-card-label span {
    color: white;
}

/* Icon styles for image-selection type */
.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* Fix for image cards with label bar when selected */
.card-option.selected>div:not(img) {
    background-color: #E89CAE !important;
    color: white !important;
}

/* Buttons */
.btn-primary {
    background-color: #00C851;
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    min-height: 56px;
    transition: all 0.3s ease;
    margin-top: var(--spacing-lg);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
    animation: pulse-green 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 20, 147, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
    }

    70% {
        box-shadow: 0 4px 20px rgba(0, 200, 81, 0.6), 0 0 0 10px rgba(0, 200, 81, 0);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
    }
}

/* Inputs & Sliders */
.text-input {
    width: 100%;
    padding: 12px;
    border: 2px dashed var(--color-info-blue);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    outline: none;
    font-family: var(--font-family);
}

.slider-container {
    width: 100%;
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.slider-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary-pink);
    margin-bottom: var(--spacing-md);
}

.slider-label {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
}

.unit-toggle {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.unit-btn {
    padding: 8px 20px;
    border: 1px solid var(--color-secondary-pink);
    border-radius: 20px;
    background: white;
    color: var(--color-secondary-pink);
    cursor: pointer;
    font-weight: 600;
}

.unit-btn.active {
    background: var(--color-secondary-pink);
    color: white;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilities */
.hidden {
    display: none;
}

/* Disable selection animation for image cards only */
.card-option.no-animate {
    background-color: #FFE5F0 !important;
    border-color: #F5D5E0 !important;
    transform: none !important;
}

.card-option.no-animate.selected {
    background-color: #FFE5F0 !important;
    color: inherit !important;
    border-color: #F5D5E0 !important;
}

.card-option.no-animate.selected .image-card-label {
    background-color: rgba(255, 20, 147, 0.95) !important;
    color: white !important;
}

.card-option.no-animate:hover {
    background-color: #FFB3D9 !important;
    transform: translateY(-2px);
}

/* Click animation for mobile feedback */
@keyframes click-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.96);
    }

    100% {
        transform: scale(1);
    }
}

.click-animate {
    animation: click-pulse 0.4s ease-in-out forwards;
    border-color: #E89CAE !important;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.card-option.no-animate.click-animate {
    background-color: #FFE5F0 !important;
}

/* Loading screens */
.loading-title {
    color: var(--color-primary-green);
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.loading-subtitle {
    margin: 30px 0;
}

.carousel-title {
    font-size: 1.5rem;
    color: var(--color-secondary-pink);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.transformation-item {
    display: none;
}

.transformation-item.active {
    display: block;
}

.transformation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.transformation-image-wrapper {
    text-align: center;
}

.transformation-image-wrapper h4 {
    font-size: 1rem;
    color: var(--color-secondary-pink);
    margin-bottom: 10px;
    font-weight: 600;
}

.transformation-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--color-secondary-pink);
}

.transformation-name {
    text-align: center;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    font-size: 1.1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background-color: var(--color-secondary-pink);
}

.cta-section {
    background: linear-gradient(135deg, #E89CAE 0%, #F5D5E0 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin: 30px 0;
    color: white;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.cta-button {
    background-color: white;
    color: var(--color-secondary-pink);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    display: block;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Ruler Slider Styles */
.ruler-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    cursor: grab;
}

.ruler-wrapper:active {
    cursor: grabbing;
}

.ruler-scroll {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 20px;
}

.ruler-scroll::-webkit-scrollbar {
    display: none;
}

.ruler-tick {
    flex: 0 0 auto;
    width: 2px;
    background-color: #E0E0E0;
    height: 30px;
    margin-right: 13px;
    position: relative;
    border-radius: 2px;
}

.ruler-tick.major {
    height: 60px;
    background-color: #999;
    width: 3px;
    margin-right: 12px;
}

.ruler-number {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: #999;
}

.center-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 70px;
    background-color: #E89CAE;
    z-index: 10;
    border-radius: 2px;
    pointer-events: none;
}

.center-indicator::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #E89CAE;
}

.value-display-large {
    font-size: 4rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    line-height: 1;
    margin-bottom: 10px;
}

.unit-label-small {
    font-size: 1.5rem;
    color: #666;
    margin-left: 5px;
}

.drag-hint {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Sales page styles - Baseado na imagem de refer�ncia */
.sales-container {
    padding: 15px;
}

.sales-title {
    color: #00C851;
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* IMC Warning Header - NEW */
.imc-warning-header {
    background: linear-gradient(135deg, #FF3547 0%, #FF6B8A 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 53, 71, 0.3);
    animation: warning-pulse 2s infinite;
}

@keyframes warning-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 53, 71, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 53, 71, 0.6), 0 0 0 8px rgba(255, 53, 71, 0.1);
    }
}

/* IMC Card */
.imc-card {
    background: white;
    border: 3px solid #FFE5F0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.imc-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imc-label {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.imc-sublabel {
    color: #999;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.imc-value {
    font-size: 5rem;
    font-weight: 900;
    color: #FF3547;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(255, 53, 71, 0.2);
    animation: imc-emphasis 2s ease-in-out infinite;
}

@keyframes imc-emphasis {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Warning message */
.warning-box {
    background: linear-gradient(135deg, #FFEAEA 0%, #FFD5D5 100%);
    border: 2px solid #FF3547;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    animation: warning-shake 3s ease-in-out infinite;
}

@keyframes warning-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }
}

.warning-title {
    color: #FF3547;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.warning-title i {
    font-size: 1.2rem;
}

.warning-text {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
    font-weight: 500;
}

/* Info boxes (Alvo Principal, Tempo de Treino, Dias de Treino) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.info-box {
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.info-label {
    color: #00C851;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.info-value {
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
}

/* Results section */
.results-title {
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin: 20px 0 10px;
    text-transform: uppercase;
}

.graph-label {
    background: #FF3547;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

/* Comparison section (Antes/Depois) */
.comparison-container {
    margin-top: 20px;
}

.comparison-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.comparison-header {
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
}

.comparison-header.before {
    color: #FF3547;
}

.comparison-header.after {
    color: #00C851;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric-item {
    background: white;
    border-radius: 8px;
    padding: 10px;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.metric-status {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-status.bad {
    color: #FF3547;
}

.metric-status.good {
    color: #00C851;
}

.metric-bar-container {
    width: 100%;
    height: 8px;
    background: #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.metric-bar {
    height: 100%;
    border-radius: 4px;
}

.metric-bar.bad {
    background: #FF3547;
}

.metric-bar.good {
    background: #00C851;
}

.metric-percentage {
    font-size: 0.75rem;
    color: #666;
    text-align: right;
}

/* CTA Button */
.cta-button-wrapper {
    margin-top: 30px;
    padding: 0 15px;
}

.sales-cta-button {
    background: #00C851;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sales-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
}

.sales-cta-button:active {
    transform: translateY(0);
}


/* ========================================
   MELHORIAS DE RESPONSIVIDADE MOBILE
   ======================================== */

@media screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.3rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem;
    }

    body {
        font-size: 15px;
    }

    .quiz-container {
        padding: 15px;
    }

    h1,
    .step-title {
        font-size: 1.4rem !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .step-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .option-button,
    .list-option,
    .continue-button {
        min-height: 44px !important;
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
    }

    .grid-2x2,
    .grid-2x3 {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .image-option {
        padding: 15px !important;
    }

    .image-option img {
        max-height: 120px !important;
    }

    .ruler-container {
        height: 100px !important;
    }

    .text-input {
        font-size: 16px !important;
        padding: 14px !important;
        min-height: 44px !important;
    }

    .footer-text {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 12px 15px;
    }
}

@media screen and (max-width: 360px) {
    body {
        font-size: 14px;
    }

    h1,
    .step-title {
        font-size: 1.25rem !important;
    }

    .option-button,
    .list-option {
        font-size: 0.9rem !important;
        padding: 10px 12px !important;
    }

    .image-option {
        padding: 12px !important;
    }

    .image-option img {
        max-height: 100px !important;
    }
}

/* Logo Text MAMA PLENA */
.logo-text {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #E89CAE;
    text-align: center;
    letter-spacing: 3px;
    font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.3rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

/* ==========================================
   NOVAS PÁGINAS DE VENDAS - SOLUÇÕES, DEPOIMENTOS, PREÇOS
   ========================================== */

.solutions-badge {
    background-color: #f5f0ff;
    color: #E89CAE;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.solutions-grid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.solution-card-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solution-card-item .icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.solution-card-item h4 {
    font-size: 1.1rem;
    color: #5d3a3a;
    margin: 0;
}

.solution-card-item p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* Pricing Styles */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.popular {
    border: 2px solid #E89CAE;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F5D5E0;
    color: #5d3a3a;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.plan-name-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-basic-badge {
    background: #f0f0f0;
    color: #333;
}

.plan-complete-badge {
    background: #E89CAE;
    color: #fff;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: #C7A4D8;
    margin-bottom: 1.5rem;
}

.price-period {
    font-size: 1rem;
    color: #888;
    font-weight: normal;
}

.features-list {
    text-align: left;
    margin: 1.5rem 0;
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
    color: #666;
}

.features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #00C851;
    margin-right: 0.5rem;
}

.btn-plan-select {
    width: 100%;
    padding: 1.2rem;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    min-height: 56px;
}

.btn-plan-select:hover {
    transform: translateY(-2px);
}

.btn-plan-select:active {
    transform: translateY(0);
}

.btn-basic {
    background: #f0f0f0;
    color: #333;
}

.btn-basic:hover {
    background: #e0e0e0;
}

.btn-complete {
    background: linear-gradient(135deg, #00C851 0%, #00E676 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
}

.btn-complete:hover {
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.5);
}

/* Carousel Styles */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: #f5f0ff;
    border-color: #E89CAE;
}

.carousel-prev {
    left: -45px;
}

.carousel-next {
    right: -45px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #E89CAE;
}

/* Responsividade */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .solutions-grid-cards {
        grid-template-columns: 1fr;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }
}

/* ==========================================
   RESPONSIVIDADE MOBILE APRIMORADA
   ========================================== */

@media screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.3rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    /* Parágrafos */
    p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }

    /* Cards e opções */
    .card-label,
    .list-text {
        font-size: 0.9rem !important;
    }

    .card-option,
    .list-item {
        padding: 12px !important;
    }

    /* Botões */
    .btn-primary {
        font-size: 1rem !important;
        padding: 14px 24px !important;
    }

    /* Input de texto */
    .text-input {
        font-size: 1rem !important;
        padding: 12px !important;
    }

    /* Slider de altura/peso */
    .value-display-large {
        font-size: 3rem !important;
    }

    .unit-label-small {
        font-size: 1.2rem !important;
    }

    .slider-value {
        font-size: 2.5rem !important;
    }

    .slider-label {
        font-size: 1rem !important;
    }

    /* Logo */
    .logo-text {
        font-size: 1.4rem !important;
        letter-spacing: 2px !important;
    }

    /* Progress bar */
    .progress-header {
        font-size: 0.8rem !important;
    }

    /* Página de Results */
    .sales-title {
        font-size: 1.1rem !important;
    }

    .imc-value {
        font-size: 2rem !important;
    }

    .imc-label {
        font-size: 0.8rem !important;
    }

    .warning-title {
        font-size: 0.85rem !important;
    }

    .warning-text {
        font-size: 0.75rem !important;
    }

    .info-label {
        font-size: 0.75rem !important;
    }

    .info-value {
        font-size: 0.9rem !important;
    }

    .results-title {
        font-size: 0.75rem !important;
    }

    .comparison-header {
        font-size: 0.9rem !important;
    }

    .metric-label {
        font-size: 0.7rem !important;
    }

    .metric-status {
        font-size: 0.8rem !important;
    }

    /* Páginas de vendas - Soluções */
    .solutions-badge {
        font-size: 0.8rem !important;
        padding: 0.3rem 1rem !important;
    }

    .solution-card-item p {
        font-size: 0.85rem !important;
    }

    .solution-card-item h4 {
        font-size: 0.95rem !important;
    }

    /* Página de Preços */
    .price-tag {
        font-size: 2rem !important;
    }

    .price-period {
        font-size: 0.9rem !important;
    }

    .plan-name-badge {
        font-size: 0.8rem !important;
        padding: 0.3rem 1rem !important;
    }

    .popular-badge {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.8rem !important;
    }

    .features-list {
        font-size: 0.85rem !important;
    }

    .features-list li {
        margin-bottom: 0.6rem !important;
    }

    /* Espaçamentos gerais */
    #app {
        padding: 1rem !important;
    }

    .quiz-container {
        padding: 0 !important;
    }

    /* Grid de cards - sempre 1 coluna em mobile pequeno */
    .grid-2x2,
    .grid-2x3 {
        grid-template-columns: 1fr !important;
    }
}

/* Ajustes para telas muito pequenas (iPhone SE, etc) */
@media screen and (max-width: 375px) {
    h1 {
        font-size: 1.4rem !important;
    }

    h2 {
        font-size: 1.1rem !important;
    }

    .card-label,
    .list-text {
        font-size: 0.85rem !important;
    }

    .btn-primary {
        font-size: 0.95rem !important;
        padding: 12px 20px !important;
    }

    .value-display-large {
        font-size: 2.5rem !important;
    }

    .imc-value {
        font-size: 1.8rem !important;
    }

    .price-tag {
        font-size: 1.8rem !important;
    }

    .logo-text {
        font-size: 1.2rem !important;
        letter-spacing: 1.5px !important;
    }

    #app {
        padding: 0.8rem !important;
    }

    .card-option,
    .list-item {
        padding: 10px !important;
    }
}

/* Ajustes para modo paisagem em mobile */
@media screen and (max-width: 900px) and (orientation: landscape) {
    h1 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }

    .card-option,
    .list-item {
        padding: 8px !important;
    }

    .btn-primary {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    #app {
        padding: 0.5rem !important;
    }
}