/* 
    High-Conversion Landing Page Styles
    Product: Scooter Elétrica TUI 1000W
    Aesthetics: Mobile-first, Premium, Reference: achadinhosdavitrine.com.br
*/

:root {
    --primary: #FF5722;
    --primary-dark: #E64A19;
    --primary-gradient: linear-gradient(135deg, #FF5722, #FF7043);
    --secondary: #fe2c55;
    --text-main: #222;
    --text-secondary: #666;
    --bg-light: #f5f5f5;
    --border-color: #eee;
    --max-width: 480px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #f0f0f0;
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    position: relative;
    padding-bottom: 80px; /* Space for sticky bottom */
}

/* Header */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-icon {
    width: 20px;
    height: 20px;
    color: #333;
    cursor: pointer;
}

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

.brand-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.icon-group {
    display: flex;
    gap: 16px;
    color: #333;
    width: 60px; /* Balance the left arrow space */
    justify-content: flex-end;
}

/* Flash Sale Banner (Reference Match) */
.flash-sale-banner {
    background: #FF5722;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.discount-box {
    background: #fff;
    color: #2e7d32;
    font-weight: 800;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 12px;
}

.flash-left .current-price {
    font-size: 24px;
    font-weight: 800;
}

.old-price-banner {
    display: block;
    font-size: 13px;
    text-decoration: line-through;
    opacity: 0.8;
}

.flash-right {
    text-align: right;
}

.offer-title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.zap-icon {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.countdown-row {
    font-size: 12px;
    opacity: 0.9;
}

.timer-bold { font-weight: 700; }

/* Carousel */
.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel-img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: contain;
    scroll-snap-align: start;
}

.carousel-pagination {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.pill {
    width: 8px;
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
    transition: all 0.3s;
}

.pill.active {
    width: 16px;
    background: var(--primary);
}

/* Product Info & Pricing */
.product-info {
    padding: 16px;
    background: #fff;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin-bottom: 8px;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #999;
    margin-bottom: 16px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFB300;
}

.score { font-weight: 700; color: #222; }
.count-blue { color: #2196f3; font-weight: 500; text-decoration: underline; }

.shipping-info-block {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.ship-top {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444;
}

.free-ship-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
}

.delivery-date { flex: 1; }
.chevron-gray { color: #ccc; width: 16px; }

.ship-bottom {
    margin-top: 8px;
    padding-left: 32px;
    font-size: 13px;
    color: #999;
}

.strikethrough { text-decoration: line-through; }

/* Variations Section */
.variations-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 16px;
    gap: 8px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.variations-section::-webkit-scrollbar { display: none; }

.variation-item {
    position: relative;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.var-img-container {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    padding: 4px;
    position: relative;
    background: #fff;
}

.var-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.variation-item.active .var-img-container {
    border: 2px solid var(--primary);
}

.check-icon {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3px;
    z-index: 3;
}

.variation-item.active .check-icon {
    display: flex;
}

.var-label {
    font-size: 12px;
    color: #666;
}

.best-seller-tag, .popular-tag {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
    white-space: nowrap;
    z-index: 4;
}

.best-seller-tag { background: #FF2E5B; }
.popular-tag { background: #999; }

/* Store Card Section */
.store-card-section {
    padding: 16px;
    background: #f5f5f5;
    border-top: 8px solid #f5f5f5;
}

.store-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.store-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.store-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.store-main { flex: 1; }
.store-name { font-size: 15px; font-weight: 700; color: #222; display: flex; align-items: center; gap: 4px; }
.verified-store { width: 14px; color: var(--secondary); fill: var(--secondary); }
.store-badge { font-size: 11px; color: var(--secondary); font-weight: 600; margin-top: 2px; }

.follow-btn {
    background: #fff;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.store-stats {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 16px;
}

.stat-item { text-align: center; }
.stat-val { display: block; font-size: 16px; font-weight: 700; color: #222; }
.stat-label { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }

.store-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.chat-btn, .visit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #eee;
    background: #fff;
    color: #444;
}

/* Detailed Specs Grid */
.about-product-section {
    padding: 24px 16px;
    background: #fff;
    border-top: 8px solid #f5f5f5;
}

.section-title { font-size: 18px; font-weight: 800; margin-bottom: 16px; color: #222; }
.main-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 24px; }

.advantages-block h3 { font-size: 15px; font-weight: 800; margin-bottom: 12px; }
.advantages-block ul { list-style: none; }
.advantages-block li { font-size: 14px; color: #444; margin-bottom: 8px; padding-left: 4px; }

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.spec-tile {
    background: #f9f9f9;
    padding: 16px 8px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.spec-tile i { width: 20px; color: var(--primary); }
.spec-label { font-size: 10px; color: #999; font-weight: 700; }
.spec-val { font-size: 13px; font-weight: 800; color: #222; }

/* Video Player */
.video-section {
    padding: 24px 16px;
    background: #fff;
    border-top: 8px solid #f5f5f5;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    pointer-events: none;
}

.play-overlay i { width: 64px; height: 64px; opacity: 0.9; }

/* Comparison Table */
.comparison-grid-section {
    padding: 30px 16px;
    background: #fff;
    border-top: 8px solid #f5f5f5;
}

.comp-tag { color: #2e7d32; font-size: 11px; font-weight: 800; letter-spacing: 1px; display: block; margin-bottom: 8px; text-align: center; }
.comp-header h2 { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 24px; }

.comp-table-wrapper { border: 1px solid #eee; border-radius: 12px; overflow: hidden; }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th { background: #f9f9f9; padding: 12px; font-size: 10px; color: #999; text-transform: uppercase; }
.comp-table td { padding: 16px 12px; font-size: 14px; text-align: center; border-bottom: 1px solid #f9f9f9; }
.highlight-here-row { background: #f1fff2; }
.bold { font-weight: 700; }
.green { color: #2e7d32; }

/* FAQ Section */
.faq-section {
    padding: 30px 16px;
    background: #fff;
    border-top: 8px solid #f5f5f5;
}

.faq-item {
    border-bottom: 1px solid #f5f5f5;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.faq-chevron {
    width: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 18px;
}

/* Reviews List */
.reviews-detailed {
    padding: 24px 16px;
    background: #fff;
    border-top: 8px solid #f5f5f5;
}

.review-summary-card {
    background: #fafafa;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.summary-left { text-align: center; }
.main-score { font-size: 36px; font-weight: 800; display: block; }
.summary-stars { display: flex; gap: 2px; }
.star-fill { width: 14px; fill: #FFB300; color: #FFB300; }

.bar-bg { width: 80px; height: 4px; background: #eee; border-radius: 2px; position: relative; }
.bar-fill { height: 100%; background: #FFB300; border-radius: 2px; }

.review-card {
    padding: 20px 0;
    border-bottom: 1px solid #f9f9f9;
}

.r-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    background-color: #f5f5f5;
    flex-shrink: 0;
}

.r-user-info { display: flex; flex-direction: column; gap: 4px; }
.r-name-row { display: flex; align-items: center; gap: 8px; }
.r-name { font-size: 15px; font-weight: 700; color: #333; }

.verified-badge {
    background: #e9fbf0;
    color: #37c37a;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.r-stars { display: flex; gap: 2px; }
.star-fill { width: 14px; fill: #FFB300; color: #FFB300; }
.r-date { font-size: 12px; color: #999; }

.r-variation {
    background: #f2f2f2;
    color: #999;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 11px;
    display: inline-block;
    margin: 12px 0;
}

.r-comment {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
}

.r-images img {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
}

.r-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    color: #999;
}

.r-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.icon-tiny { width: 16px; }
.r-share { margin-left: auto; width: 18px; }

/* Savings Comparison Section (Faithful) */
.savings-section {
    padding: 30px 16px;
    background: #fff;
    text-align: center;
}

.savings-header h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.savings-header p { font-size: 15px; color: #666; line-height: 1.5; margin-bottom: 24px; }
.green-bold { color: #2e7d32; font-weight: 800; }

.comparison-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: left;
}

.comp-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #444;
    margin-bottom: 16px;
}

.comp-row { margin-bottom: 16px; }
.comp-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

.comp-bar-full {
    height: 12px;
    background: #FF8A00;
    border-radius: 50px;
    width: 100%;
}

.comp-dot-blue {
    width: 20px;
    height: 20px;
    background: #4285F4;
    border-radius: 50%;
    margin-left: -5px;
}

.economy-pill {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
}

/* Sticky Bottom Refined Style */
.sticky-bottom-refined {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    z-index: 9999;
}

.sticky-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 40px;
    color: #444;
}

.sticky-icon-col i { width: 22px; color: #333; }
.sticky-icon-col span { font-size: 11px; }

.buy-btn-gradient {
    flex: 1;
    background: linear-gradient(135deg, #FF4B68, #FF3366);
    border: none;
    border-radius: 14px;
    padding: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.buy-price { font-size: 18px; font-weight: 800; line-height: 1; }
.buy-subtitle { font-size: 12px; font-weight: 500; opacity: 0.9; margin-top: 2px; }

/* Customer Protection V2 */
.customer-protection-v2 {
    padding: 24px 16px;
    background: #fff;
    border-top: 1px solid #f5f5f5;
}

.protect-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.p-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #8D6E1E; /* Brown-Gold from screenshot */
}

.p-title-box i { width: 22px; }

.protect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.p-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.p-item i { width: 14px; color: #8D6E1E; stroke-width: 3; }

/* Offers Section */
.offers-section {
    padding: 24px 16px;
    background: #fff;
    border-top: 1px solid #f5f5f5;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
}

.offers-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.offers-scroll::-webkit-scrollbar { display: none; }

.offer-card {
    min-width: 250px;
    flex-shrink: 0;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 16px;
}

.offer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.offer-name { font-size: 15px; font-weight: 800; color: #333; }
.offer-badge {
    background: #00BFA5; /* Mint green */
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
}

.offer-desc { font-size: 13px; color: #666; margin-bottom: 12px; line-height: 1.4; }

.offer-pill-btn {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Refined Footer Styles (Matching Screenshot) */
.main-footer {
    padding: 60px 16px 140px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-row { margin-bottom: 30px; }
.footer-logo { width: 120px; }

.trust-icons-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    max-width: 500px;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f5f5f5;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-item i { width: 32px; height: 32px; color: #666; stroke-width: 1.5; }
.trust-item span { font-size: 13px; color: #888; font-weight: 500; }

.footer-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.footer-brand { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 4px; }
.footer-cnpj, .footer-address { font-size: 14px; color: #666; margin: 0; }

.contact-links {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.contact-item i { width: 20px; color: #888; }

.payment-section {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-title {
    font-size: 15px;
    font-weight: 600;
    color: #999;
    margin-bottom: 16px;
}

.payment-methods {
    display: flex;
    gap: 12px;
}

.pay-method {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 10px 30px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-links-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links-footer a {
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

/* Mobile First Global Optimization */
@media (max-width: 480px) {
    .container { padding: 0; }
    .product-info { padding: 16px; }
    .product-title { font-size: 18px; }
}

/* Video Section Polish */
.video-section { padding: 20px 16px; background: #fff; }
.video-container {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #000;
}
video { display: block; }

@media (max-width: var(--max-width)) {
    .container { width: 100%; border-radius: 0; }
    .sticky-bottom { width: 100%; }
}
