:root {
    --bg-color: #111B21;
    --text-color-light: #FFFFFF;
    --text-color-dark: #111B21;
    --primary-color: #25D366;
    --top-bar-color: #282828;
    --content-bg: #FFFFFF;
    --input-bg: #ebebeb;
    --light-gray: #f0f4f8;
    --error-color: #ff3b30;
    --success-color: #01D756;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000009 0%, #1C2296 100%);
    color: var(--text-color-light);
    text-align: center;
    padding-top: 80px;
    font-size: 1.15rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--top-bar-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 30px;
}

.logo span {
    font-weight: 600;
    font-size: 1.1rem;
}

.game-status {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lives {
    display: flex;
    gap: 0.3rem;
}

.balance {
    background-color: rgba(37, 211, 102, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

main {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--content-bg);
    color: var(--text-color-dark);
    text-align: left;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    text-align: left;
}

p, .orientation-text, .highlight-box p, .data-value, .data-label {
    font-size: 1.2rem;
}

.input-group {
    text-align: left;
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: var(--input-bg);
    font-size: 1.15rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.start-button {
    background-color: #FFD600;
    color: #111B21;
}
.start-button:hover {
    background-color: #FFC400;
}

#options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.option {
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.option:has(input:checked) {
    border-color: var(--primary-color);
    background-color: #e6f9ee;
}
.option label {
    flex-grow: 1;
    color: var(--text-color-dark);
}
.option input[type="radio"] { 
    min-width: 20px; 
    height: 20px; 
}

.option.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.option.disabled label {
    color: #999;
}

.feedback-box,
.summary-box,
div.summary-box,
section.summary-box,
.screen .summary-box,
.screen > .summary-box {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    padding: 1.2rem 1.5rem !important;
    border-radius: 8px !important;
    margin: 1.2rem 0 !important;
    background-color: var(--light-gray) !important;
    box-sizing: border-box !important;
}

.summary-box p {
    margin-bottom: 0.5rem;
}
.summary-box p:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: left;
}

.highlight-box p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-box .icon-check {
    color: var(--success-color);
    font-size: 1.5rem;
}

.highlight-box .icon-error {
    color: var(--error-color);
    font-size: 1.5rem;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.orientation-text {
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.3rem;
}

#feedback-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color-dark);
}

#feedback-box.correct {
    background-color: #E1FED7;
    border: 1px solid var(--success-color);
}

#feedback-box.error {
    background-color: #ffb5b5;
    border: 1px solid var(--error-color);
}

/* Timeline Styles */
.timeline-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto 2rem auto;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.timeline-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.timeline-step.active .timeline-step-icon {
    background-color: #01D756;
    color: #FFFFFF;
    border-color: #01D756;
}

.timeline-connector {
    height: 4px;
    background-color: #e0e0e0;
    flex-grow: 1;
    position: relative;
    top: 18px;
    margin: 0 -2px;
}

/* Push Notification Styles */
#push-notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.push-notification {
    padding: 12px 18px;
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    min-width: 390px;
    max-width: 520px;
}
.push-notification.show {
    transform: translateY(0);
    opacity: 1;
}
.push-notification .icon { font-size: 1.5rem; }

.push-notification.wpp { 
    background-color: #FFFFFF;
    color: #111B21;
}
.push-notification.wpp img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}
.push-notification.wpp .content {
    flex-grow: 1;
    text-align: left;
}
.push-notification.wpp .content strong {
    display: block;
    font-size: 1.1rem;
}
.push-notification.wpp .content span {
    font-size: 0.9rem;
    color: #444;
}

.push-notification.success, .push-notification.error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
}

.push-notification.success .content, .push-notification.error .content {
    text-align: left;
    flex-grow: 1;
    font-size: 0.9rem;
    color: #111B21;
}

#results-panel {
    background-color: var(--light-gray);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

#results-panel strong {
    color: var(--primary-color);
    font-size: 1.4rem;
}

#final-message {
    font-weight: 600;
    font-size: 1.1rem;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    line-height: 1.4;
    padding: 0 2rem 2rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    display: none; /* Oculto por padrão */
}

/* --- Mobile Adjustments --- */
@media (max-width: 600px) {
    body {
        padding-top: 120px; /* Aumenta o padding para acomodar o header maior */
        font-size: 1.12rem;
    }

    header {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }

    .game-status {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .balance {
        font-size: 0.9rem; /* Reduz a fonte para evitar quebra */
        padding: 0.4rem 0.8rem;
    }

    #push-notification-container {
        left: 10px;
        right: 10px;
        width: auto;
        transform: translateX(0);
    }

    /* Timeline Mobile Optimizations */
    .timeline-container {
        padding: 0 1rem;
        margin: 1rem 0;
    }

    .timeline-step {
        min-width: 40px;
        min-height: 40px;
    }

    .timeline-step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .timeline-connector {
        height: 3px;
        min-width: 20px;
    }

    /* Loader Mobile Optimizations */
    #loader-bar-container {
        width: 100%;
        max-width: 280px;
        height: 20px;
    }

    #loader-title {
        font-size: 1.3rem;
        text-align: center;
        padding: 0 1rem;
    }

    #loader-percent {
        font-size: 1rem;
    }

    /* Result Graph Mobile Optimizations */
    #result-graph-container {
        max-width: 100%;
        height: 150px;
        margin: 0 auto;
    }

    .result-graph-legendas-container {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .result-graph-legenda {
        position: static;
        font-size: 0.8rem;
        color: #666;
        white-space: nowrap;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 48%;
    }

    .result-graph-legenda:first-child {
        text-align: left;
    }

    .result-graph-legenda:last-child {
        text-align: right;
    }

    /* Timer Mobile Optimizations */
    #timer-bar-container {
        height: 10px;
    }

    #timer-text {
        font-size: 0.8rem;
    }

    /* Potential Loader Mobile Optimizations */
    #potential-loader-container {
        width: 100px;
        height: 100px;
    }

    #potential-loader-text {
        font-size: 1.2rem;
        width: 70px;
        height: 70px;
    }

    #potential-loader-title {
        font-size: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    /* Main Content Mobile Optimizations */
    main {
        margin: 1rem auto;
        padding: 1.5rem;
        border-radius: 8px;
    }

    h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    h2 {
        font-size: 1.3rem;
        text-align: center;
    }

    p, .orientation-text, .highlight-box p, .data-value, .data-label {
        font-size: 16px;
        text-align: center;
    }

    .highlight-box {
        padding: 1rem;
        margin: 1rem 0;
    }

    .highlight-box h3 {
        font-size: 1.1rem;
        text-align: center;
    }

    .highlight-box p {
        font-size: 0.9rem;
        text-align: left;
    }

    /* Options Mobile Optimizations */
    .option {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .option label {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Summary Box Mobile Optimizations */
    .screen .summary-box {
        padding: 1.2rem 1rem !important;
        font-size: 1.12rem !important;
    }

    .summary-box h3 {
        font-size: 1.1rem;
        text-align: center;
    }

    .summary-box p {
        font-size: 0.9rem;
        text-align: left;
    }

    /* Form Mobile Optimizations */
    .input-group input {
        padding: 1rem;
        font-size: 1.12rem;
    }

    .cta-button {
        padding: 1.2rem;
        font-size: 1.12rem;
    }

    /* Feedback Mobile Optimizations */
    #feedback-box {
        padding: 1.2rem;
        margin: 1rem 0;
    }

    #feedback-box h3 {
        font-size: 1.1rem;
        text-align: center;
    }

    #feedback-box p {
        font-size: 0.9rem;
        text-align: left;
    }

    h2, #final-title, #summary-title, #potential-title, #calculator-title {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.7rem !important;
        font-weight: 700;
        text-align: center;
    }

    #potential-calculator-section {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    #potential-calculator-section .input-group {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    #potential-form {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #growth-plan-section {
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .summary-box,
    div.summary-box,
    section.summary-box,
    .screen .summary-box,
    .screen > .summary-box {
        font-size: 1.3rem !important;
        padding: 1.2rem 1rem !important;
    }

    .feedback-box,
    .summary-box,
    div.summary-box,
    section.summary-box,
    .screen .summary-box,
    .screen > .summary-box {
        font-size: 14px !important;
        padding: 1.2rem 1rem !important;
    }

    .summary-box,
    .summary-box * {
        font-size: 1.3rem !important;
    }

    .summary-box,
    .summary-box *,
    .feedback-box,
    .feedback-box * {
        font-size: 1.1rem !important;
    }

    * {
        font-size: min(max(1.1rem, var(--computed-font-size, 1.12rem)), 3rem);
    }

    #question-title {
        font-size: 18px !important;
    }

    .step-title {
        font-size: 18px !important;
    }
}

/* Extra Small Mobile Optimizations */
@media (max-width: 400px) {
    body {
        padding-top: 140px;
    }

    header {
        padding: 0.6rem 0.8rem;
    }

    .logo span {
        font-size: 1rem;
    }

    .balance {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    main {
        margin: 0.5rem auto;
        padding: 1rem;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p, .orientation-text, .highlight-box p, .data-value, .data-label {
        font-size: 1.3rem;
    }

    .timeline-step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .timeline-connector {
        height: 2px;
        min-width: 15px;
    }

    .option {
        padding: 1rem;
    }

    .option label {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .summary-item {
        min-width: 80px;
        padding: 1rem;
    }

    .summary-value {
        font-size: 1.6rem;
    }

    .summary-label {
        font-size: 0.9rem;
    }

    #loader-bar-container {
        max-width: 250px;
        height: 18px;
    }

    #potential-loader-container {
        width: 80px;
        height: 80px;
    }

    #potential-loader-text {
        font-size: 1rem;
        width: 60px;
        height: 60px;
    }

    /* Extra Small Mobile - Pillars */
    #pillars-container {
        gap: 1rem;
    }

    .pillar-block {
        padding: 1rem;
    }

    .pillar-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .pillar-title {
        font-size: 1.1rem;
    }

    .pillar-description {
        font-size: 0.9rem;
    }

    #action-title {
        font-size: 1.1rem;
    }

    #access-plan-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .result-graph-legendas-container {
        padding: 0 4px;
    }

    .result-graph-legenda {
        font-size: 0.65rem;
        max-width: 48%;
    }

    .screen .summary-box {
        padding: 1rem 0.5rem !important;
        font-size: 1.05rem !important;
    }

    .summary-box, div.summary-box, section.summary-box, .screen .summary-box, .screen > .summary-box {
        font-size: 1.05rem !important;
        padding: 1rem 0.5rem !important;
    }

    .feedback-box,
    .summary-box,
    div.summary-box,
    section.summary-box,
    .screen .summary-box,
    .screen > .summary-box {
        font-size: 1.05rem !important;
        padding: 1rem 0.5rem !important;
    }
}

@media (max-width: 768px) {
    h2, #final-title, #summary-title, #potential-title, #calculator-title {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.9rem !important;
        font-weight: 700;
        text-align: center;
    }
}

#question-title {
    text-align: center;
}

.options-label {
    text-align: center;
    font-weight: 700; /* bold */
    text-transform: uppercase;
    margin-top: 2.5rem;
    margin-bottom: -0.5rem;
}

#loader-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}
#loader-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}
#loader-bar-container {
    width: 300px;
    height: 18px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}
#loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6a00 0%, #ffd600 50%, #00c9a7 100%);
    border-radius: 10px;
    transition: width 0.2s;
}
#loader-percent {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}
#result-graph-container {
    width: 100%;
    max-width: 420px;
    height: 180px;
    margin: 0 auto;
}
.result-graph-svg {
    width: 100%;
    height: 100%;
}
.result-graph-point {
    fill: #fff;
    stroke: #7c3aed;
    stroke-width: 4px;
}
.result-graph-label {
    font-size: 1rem;
    font-weight: 700;
    fill: #fff;
    text-anchor: middle;
    dominant-baseline: middle;
}
.result-graph-box {
    fill: #7c3aed;
    rx: 8;
    ry: 8;
}
.result-graph-box-text {
    fill: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-anchor: middle;
    dominant-baseline: middle;
}
.result-graph-legendas-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    box-sizing: border-box;
}
.result-graph-legenda {
    position: static;
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 48%;
}
.result-graph-legenda:first-child {
    text-align: left;
}
.result-graph-legenda:last-child {
    text-align: right;
}

/* Timer Styles */
#timer-container {
    margin: 1.5rem 0;
    text-align: center;
}

#timer-bar-container {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

#timer-bar {
    height: 100%;
    background: linear-gradient(90deg, #25D366 0%, #FFD600 50%, #ff3b30 100%);
    width: 100%;
    transition: width 1s linear;
    border-radius: 4px;
}

#timer-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

#timer-text.warning {
    color: #ff3b30;
    animation: pulse 1s infinite;
}

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

/* Game Summary Styles */
#game-summary-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

#summary-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

#radar-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

#radar-chart-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

#radar-chart-container {
    max-width: 500px;
    margin: 0 auto;
}

#summary-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.summary-item {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 120px;
}

.summary-value {
    font-size: 2rem;
    font-weight: 700;
    color: #25D366;
    margin-bottom: 0.5rem;
}

.summary-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

@media (max-width: 600px) {
    #summary-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .summary-item {
        min-width: 100px;
    }
}

#final-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Potential Calculator Styles */
#potential-calculator-section {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
#potential-calculator-section .input-group input {
    background: #fff !important;
    border: 1px solid #ccc !important;
    color: #111B21;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    font-size: 1.12rem;
}

/* Potential Result Styles */
#potential-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

#scenarios-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.scenario-block {
    flex: 1;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#current-scenario {
    background-color: #f8f9fa;
}

#possible-scenario {
    background-color: #e6f9ee;
}

.scenario-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.scenario-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.data-item.highlight {
    background-color: #25D366;
    color: white;
    font-weight: 700;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.2rem;
}

.data-item.highlight.current {
    background-color: #FF9500;
}

.data-item.highlight .data-label {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.data-item.highlight .data-value {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.data-label {
    font-weight: 600;
    color: #333;
}

.data-item.highlight .data-label {
    color: white;
}

.data-value {
    font-weight: 700;
    color: #25D366;
    font-size: 1.1rem;
}

.data-item.highlight .data-value {
    color: white;
}

@media (max-width: 768px) {
    #scenarios-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .scenario-block {
        padding: 1.5rem;
    }

    /* Tablet Optimizations */
    main {
        max-width: 600px;
        margin: 1.5rem auto;
        padding: 2rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .timeline-container {
        padding: 0 2rem;
    }

    .timeline-step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    #loader-bar-container {
        width: 100%;
        max-width: 350px;
    }

    #result-graph-container {
        max-width: 450px;
        height: 160px;
    }

    .result-graph-legendas-container {
        max-width: 400px;
    }

    .summary-item {
        min-width: 140px;
        padding: 1.8rem;
    }

    .summary-value {
        font-size: 2.2rem;
    }

    .pillar-block {
        padding: 2rem;
    }

    .pillar-title {
        font-size: 1.4rem;
    }

    .pillar-description {
        font-size: 1.1rem;
    }
}

/* Potential Loader Styles */
#potential-loader-container {
    position: relative;
    width: 120px;
    height: 120px;
}

#potential-loader-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#25D366 0deg, #e0e0e0 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#potential-loader-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#25D366 0deg, #e0e0e0 0deg);
    transition: background 0.1s ease;
}

#potential-loader-text {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#potential-loader-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

/* Growth Plan Styles */
#growth-plan-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

#growth-plan-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

#pillars-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pillar-block {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pillar-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

#pillar-1::before {
    background: linear-gradient(90deg, #FF6B6B, #FF8E8E);
}

#pillar-2::before {
    background: linear-gradient(90deg, #4ECDC4, #6EE7DF);
}

#pillar-3::before {
    background: linear-gradient(90deg, #45B7D1, #6BC5E3);
}

.pillar-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
}

.pillar-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.pillar-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

#action-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

#action-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.4;
}

#access-plan-button {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    max-width: 400px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

#access-plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }
}

@media (max-width: 768px) {
    .pillar-block {
        padding: 1.5rem;
    }
    
    #growth-plan-section {
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    #action-section {
        padding: 1.5rem;
    }

    /* Pillars Container Mobile */
    #pillars-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pillar-block {
        margin-bottom: 1rem;
    }

    .pillar-icon {
        font-size: 2.5rem;
    }

    .pillar-title {
        font-size: 1.3rem;
    }

    .pillar-description {
        font-size: 1rem;
        text-align: left;
    }

    /* Action Section Mobile */
    #action-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    #access-plan-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        max-width: 100%;
    }

    .summary-box,
    div.summary-box,
    section.summary-box,
    .screen .summary-box,
    .screen > .summary-box {
        padding: 1.2rem 1rem !important;
        font-size: 1.12rem !important;
    }
}

#growth-plan-section .vendors-highlight {
    color: #111B21 !important;
}

.step-title {
    font-size: 1.3rem;
}

@media (max-width: 600px) {
    .step-title {
        font-size: 18px !important;
    }
}

.result-graph-legenda {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #666;
    white-space: normal;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .result-graph-legenda {
        font-size: 0.7rem;
        max-width: 70px;
    }
}
@media (max-width: 400px) {
    .result-graph-legenda {
        font-size: 0.65rem;
        max-width: 60px;
    }
}

/* Media queries específicas para dispositivos com telas muito pequenas */
@media (max-width: 375px) {
    /* iPhone SE e dispositivos similares */
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    h3 {
        font-size: 1rem;
    }
    
    p, .orientation-text, .highlight-box p, .data-value, .data-label {
        font-size: 14px;
    }
    
    .input-group input {
        font-size: 14px;
    }
    
    .cta-button {
        font-size: 14px;
    }
    
    #question-title {
        font-size: 18px !important;
    }
    #question-description {
        font-size: 15px !important;
    }
    .feedback-box, .feedback-box * {
        font-size: 15px !important;
    }
    .option, .option label {
        font-size: 15px !important;
    }
    
    .step-title {
        font-size: 14px !important;
    }
    
    .feedback-box,
    .feedback-box *,
    .summary-box,
    .summary-box * {
        font-size: 12px !important;
    }
}

@media (max-width: 360px) {
    /* Samsung S8 e dispositivos similares */
    body {
        font-size: 0.85rem;
    }
    
    h1 {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1rem;
    }
    
    h3 {
        font-size: 0.95rem;
    }
    
    p, .orientation-text, .highlight-box p, .data-value, .data-label {
        font-size: 13px;
    }
    
    .input-group input {
        font-size: 13px;
    }
    
    .cta-button {
        font-size: 13px;
    }
    
    #question-title {
        font-size: 11px !important;
    }
    
    .step-title {
        font-size: 13px !important;
    }
    
    .feedback-box,
    .feedback-box *,
    .summary-box,
    .summary-box * {
        font-size: 11px !important;
    }
}