@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

:root {
    --brand-blue: #1899D5;
    --brand-blue-dark: #137DAE;
    --brand-green: #2CB424;
    --brand-green-hover: #24921D;
    --correct-green: #28a745;
    --incorrect-red: #dc3545;
    --bg-light: #f4f4f4;
    --text-main: #333333;
    --container-bg: #FFFFFF;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #444;
    padding: 10px 15px;
    border-radius: 8px;
    z-index: 10000;
    transform: translateX(-150%);
    transition: transform 0.5s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.purchase-notification.show {
    transform: translateX(0);
}

header {
    background: var(--brand-blue);
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-bottom: 3px solid var(--brand-blue-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header img {
    height: 60px;
    max-width: 90%;
    object-fit: contain;
}

.top-bar-text {
    background: var(--brand-blue-dark);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: bold;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-light);
    padding-bottom: env(safe-area-inset-bottom);
}

.container {
    background-color: var(--container-bg);
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 20px auto;
}

/* Typography */
.quiz-header h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.quiz-header p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.quiz-progress {
    height: 6px;
    background: #e6e6e6;
    border-radius: 999px;
    overflow: hidden;
    margin: 10px 0 20px;
}

.quiz-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--brand-green);
    transition: width 0.3s ease;
}

.quiz-header p.highlight {
    color: #666;
    font-size: 1.1rem;
    font-weight: normal;
}

.quiz-helper {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}

/* Forms */
#lead-form,
.prize-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#lead-form input,
.prize-form input,
.prize-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

#lead-form input:focus,
.prize-form input:focus,
.prize-form textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
}

/* Quiz Elements */
#question-counter {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 15px;
}

.question-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.answer-options {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-options li {
    background-color: var(--brand-blue);
    border: 2px solid var(--brand-blue-dark);
    color: white;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.answer-options li:hover {
    background-color: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
}

.answer-options li.correct {
    background-color: var(--correct-green);
    border-color: var(--correct-green);
    color: white;
}

.answer-options li.incorrect {
    background-color: var(--incorrect-red);
    border-color: var(--incorrect-red);
    color: white;
}

.answer-options li.hint {
    border-color: var(--brand-blue);
    box-shadow: 0 0 15px var(--brand-blue);
}

/* Buttons */
button {
    background-color: var(--brand-green);
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.2s;
    width: 100%;
    text-transform: uppercase;
}

button:hover:not(:disabled) {
    background-color: var(--brand-green-hover);
}

button:disabled {
    background-color: #555;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.primary-cta {
    box-shadow: 0 10px 20px rgba(44, 180, 36, 0.2);
}

.primary-cta:hover:not(:disabled) {
    box-shadow: 0 12px 24px rgba(44, 180, 36, 0.3);
    transform: translateY(-1px);
}

.terms {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#terms-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Prizes */
.prize-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.prize-card {
    position: relative;
    background-color: #222;
    border: 2px solid #444;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.prize-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-5px);
}

.prize-card.selected {
    border-color: var(--brand-blue);
    background-color: rgba(0, 160, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 160, 255, 0.3);
}

.prize-card img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.prize-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    color: var(--brand-blue);
}

.prize-card p {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 10px;
}

.price-tag {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Admin Styles */
.admin-container {
    max-width: 800px;
    text-align: left;
}

.admin-section {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.admin-section h2 {
    margin-top: 0;
    color: var(--brand-blue);
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}

.prize-form label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.admin-prize-img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
    display: block;
    margin-bottom: 15px;
}

/* Loading Spinner */
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--brand-blue);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   RESPONSIVE & MOBILE DESIGN
   ======================================== */

/* General Mobile Improvements */
@media (max-width: 768px) {
    body {
        padding: 0;
        background-attachment: scroll;
    }

    .container {
        padding: 20px 15px;
        margin: 10px auto;
        border-radius: 5px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }

    .quiz-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .question-text {
        font-size: 1.2rem;
    }

    button {
        font-size: 1rem;
        padding: 14px 20px;
        min-height: 52px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    .checkout-form input {
        font-size: 16px;
        /* iOS zoom prevention */
        padding: 12px;
        min-height: 48px;
    }

    .prize-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }

    .prize-card {
        padding: 15px;
    }

    .prize-card img {
        max-height: 100px;
    }

    header img {
        height: 40px;
    }

    .top-bar-text {
        font-size: 0.75rem;
        padding: 6px 5px;
        line-height: 1.2;
    }

    /* Trust Seals */
    .trust-badges img {
        height: 50px !important;
        margin: 5px;
    }

    /* Footer */
    footer {
        margin-top: 30px;
        padding: 15px;
    }

    .quiz-progress {
        margin: 8px 0 16px;
        height: 8px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .purchase-notification {
        left: 50%;
        right: auto;
        bottom: auto;
        top: 70px;
        transform: translate(-50%, -150%);
    }

    .purchase-notification.show {
        transform: translate(-50%, 0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Proof & Trust Blocks */
.live-counter-box {
    background: rgba(46, 204, 113, 0.1);
    border-left: 3px solid #2ecc71;
    padding: 12px 20px;
    margin: 20px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

#live-viewers-count {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.viewers-text {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.testimonials-box h3 {
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

#testimonial-slider {
    text-align: center;
    min-height: 100px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.stars {
    color: #f1c40f;
    margin-bottom: 5px;
}

.author-text {
    color: #999;
    font-size: 0.85rem;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    color: white;
    box-shadow: 0 4px 15px rgba(24, 153, 213, 0.3);
}

.guarantee-box h3 {
    margin: 0;
    font-size: 1.1rem;
}

.guarantee-box p {
    margin: 10px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-badges-container {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
}

.trust-badges-container h3 {
    color: var(--brand-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.badges-grid img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.payment-summary {
    margin-bottom: 20px;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.summary-title {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #333;
    text-align: left;
}

.payment-summary p {
    margin: 5px 0;
    color: #666;
}

.total-value-row {
    font-size: 1.5rem !important;
    color: var(--brand-blue) !important;
    margin-top: 10px !important;
}

.bank-central-badge {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #f0fff4;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid #c6f6d5;
}

.bank-central-badge span {
    font-size: 0.8rem;
    color: #276749;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    transition: transform 0.3s;
    display: block;
    width: 60px;
    height: 60px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

@media (max-width: 768px) {
    .whatsapp-label {
        display: none;
        /* Hide label on small screens to save space */
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }

    .quiz-header h1 {
        font-size: 1.3rem;
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .shipping-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Touch Device Specifics */
@media (hover: none) and (pointer: coarse) {

    button,
    .answer-options li,
    .prize-card,
    .shipping-card {
        cursor: default;
    }

    button:active,
    .answer-options li:active,
    .prize-card:active {
        transform: scale(0.98);
        filter: brightness(0.9);
    }

    /* Disable hover effects that stick on touch */
    .answer-options li:hover,
    .prize-card:hover {
        transform: none;
        border-color: #444;
    }

    .answer-options li.correct,
    .answer-options li.incorrect,
    .prize-card.selected {
        border-color: var(--brand-blue) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none;
    }
}

/* High Resolution Tweaks */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
    }
}

/* Utility classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeUp 0.35s ease;
}

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

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

.mt-0 {
    margin-top: 0;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.max-w-300 {
    max-width: 300px;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-800 {
    max-width: 800px;
}

.w-100 {
    width: 100%;
}

/* Layout helpers */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.wrap {
    flex-wrap: wrap;
}

/* Index page */
.terms-box {
    background: #fdfdfd;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
    margin: 20px 0;
}

.terms-label {
    font-size: 0.9rem;
    color: #555;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.benefits-list li {
    background: #f8fbff;
    border: 1px solid #e6f1f8;
    padding: 10px 12px 10px 36px;
    border-radius: 8px;
    position: relative;
    font-size: 0.9rem;
    color: #444;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-green);
    font-weight: bold;
}

.cta-subtext {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
}

.form-trust {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #777;
}

.processing-center {
    text-align: center;
}

.spinner-large {
    width: 50px;
    height: 50px;
    border-width: 5px;
    margin-bottom: 20px;
}

.processing-title {
    color: var(--brand-blue);
}

.processing-bar-wrap {
    background: #eee;
    border-radius: 10px;
    height: 10px;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

.processing-bar-fill {
    background: var(--brand-green);
    height: 100%;
    width: 0%;
    transition: width 0.5s;
}

.processing-steps {
    text-align: left;
    margin-top: 20px;
    list-style: none;
    padding: 0;
    color: #666;
    font-size: 0.9rem;
}

.processing-step {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.processing-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reservation-bar {
    background: #e74c3c;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.limited-stock {
    color: #f1c40f;
    font-weight: bold;
}

.stock-divider {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #333;
}

.live-counter-icon {
    font-size: 1.2rem;
}

.footer-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* WhatsApp floating button */
.whatsapp-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Purchase notification */
.purchase-notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.purchase-icon {
    background: #2ecc71;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.purchase-text {
    text-align: left;
}

.purchase-title {
    margin: 0;
    font-size: 0.85rem;
    color: #fff;
    font-weight: bold;
}

.purchase-meta {
    margin: 0;
    font-size: 0.75rem;
    color: #ddd;
}

.purchase-item {
    margin: 2px 0 0 0;
    font-size: 0.7rem;
    color: #aaa;
}

.prize-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Checkout */
.checkout-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px;
}

.checkout-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f4f4f4;
    border: 1px solid #e3e3e3;
    color: #666;
    font-size: 0.85rem;
    font-weight: bold;
}

.checkout-step .step-number {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d9d9d9;
    color: #333;
    font-size: 0.75rem;
}

.checkout-step.is-active {
    background: rgba(24, 153, 213, 0.1);
    border-color: rgba(24, 153, 213, 0.4);
    color: var(--brand-blue);
}

.checkout-step.is-active .step-number {
    background: var(--brand-blue);
    color: #fff;
}

.checkout-step.is-complete {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.4);
    color: #2ecc71;
}

.checkout-step.is-complete .step-number {
    background: #2ecc71;
    color: #fff;
}

.pix-area {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #444;
    color: #fff;
}

.pix-area h2 {
    color: var(--brand-blue);
    margin-top: 0;
}

.pix-area p {
    color: #ccc;
}

.pix-area input {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.pix-key-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.pix-key-input {
    background: #333;
    border: 1px solid #555;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 70%;
    text-align: center;
}

.copy-btn {
    width: auto;
    margin-top: 0;
    padding: 10px 20px;
}

.pix-help {
    font-size: 0.8rem;
    color: #999;
    margin-top: 6px;
}

.pix-actions {
    margin-top: 15px;
}

.qrcode-img {
    max-width: 250px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}

.selected-prize-summary {
    background-color: rgba(0, 160, 255, 0.1);
    border: 1px solid var(--brand-blue);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.shipping-card {
    background: #2a2a2a;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #fff;
}

.shipping-card:hover {
    border-color: var(--brand-blue);
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.shipping-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--brand-blue);
    margin-bottom: 2px;
}

.shipping-card span {
    font-size: 0.85rem;
    color: #aaa;
}

.shipping-card .price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2ecc71;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #555;
    margin-top: 30px;
}

.urgency-bar {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.copy-success {
    background-color: var(--correct-green);
}

.stock-bar {
    background: #e74c3c;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.page-title {
    color: var(--brand-blue);
    margin-top: 0;
}

.intro-text {
    color: #666;
}

.shipping-info {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    color: #fff;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: left;
}

.shipping-info strong {
    color: #2ecc71;
}

.shipping-options {
    margin-top: 20px;
    text-align: left;
}

.shipping-options h3 {
    margin-bottom: 10px;
}

.shipping-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pix-area.hidden {
    display: none;
}

.pix-qrcode.hidden {
    display: none;
}

.payment-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.faq-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.faq-title {
    color: var(--brand-blue);
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    cursor: pointer;
}

.faq-summary {
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.faq-text {
    margin-top: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.trust-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #999;
}

.site-footer {
    margin-top: 50px;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-text {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.security-seal {
    margin: 20px auto;
    max-width: 300px;
    opacity: 0.8;
}

.security-seal img {
    width: 100%;
}

.brand-text {
    color: var(--brand-blue);
}

.brand-link {
    color: var(--brand-blue);
}

.flow-active .site-footer,
.flow-active .whatsapp-btn {
    display: none;
}

.checkout-page .site-footer,
.checkout-page .whatsapp-btn {
    display: none;
}

.pix-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111;
    border-top: 1px solid #222;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    display: flex;
    gap: 10px;
    justify-content: center;
    z-index: 10001;
}

.pix-sticky-bar button {
    margin-top: 0;
    width: auto;
    padding: 12px 16px;
}

.sticky-copy-btn {
    background-color: var(--brand-green);
}

.sticky-paid-btn {
    background-color: transparent;
    border: 1px solid #555;
    color: #fff;
}

@media (min-width: 769px) {
    .pix-sticky-bar {
        display: none !important;
    }
}

/* Legal pages */
.legal-container {
    max-width: 800px;
    text-align: left;
}

.legal-title {
    text-align: center;
    margin-bottom: 30px;
}

.legal-date {
    color: #999;
    margin-bottom: 30px;
}

.legal-section-title {
    color: var(--brand-blue);
    margin-top: 30px;
}

.legal-list {
    color: #ccc;
    line-height: 1.8;
}

.legal-highlight-box {
    margin-top: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
}

.legal-highlight-text {
    color: #2ecc71;
    font-weight: bold;
}

.legal-muted {
    color: #999;
}

/* Admin */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.admin-help {
    color: #999;
    margin-bottom: 20px;
}

.admin-section-title {
    color: var(--brand-blue);
    margin-top: 20px;
}

.admin-hr {
    margin: 20px 0;
    border: 1px solid #444;
}

.admin-qrcode-container {
    margin-top: 10px;
    margin-bottom: 15px;
}

.admin-qrcode-img {
    max-width: 200px;
    display: none;
}

.admin-leads-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-leads-header p {
    margin: 0;
}

.btn-primary {
    padding: 8px 15px;
    background-color: var(--brand-blue);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #222;
    border-radius: 5px;
}

.admin-table-head {
    background: #333;
    text-align: left;
}

.admin-table-th {
    padding: 12px;
    border-bottom: 2px solid #444;
}

.admin-table-cell {
    padding: 12px;
}

.admin-table-cell-small {
    font-size: 0.9em;
}

.admin-table-cell-muted {
    color: #999;
}

.admin-table-cell-error {
    color: #dc3545;
}

.admin-table-loading {
    padding: 20px;
    text-align: center;
}

.admin-table-row {
    border-bottom: 1px solid #333;
}

.pre-line {
    white-space: pre-line;
}

/* Login */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-form button:hover {
    background: #218838;
}

.error-message {
    color: red;
    text-align: center;
    display: none;
    margin-bottom: 10px;
}

.error-message.is-visible {
    display: block;
}
