/* =========================================
   SelaTudo® - CSS for High Conversion
   Style Inspired by Premium Shopify Stores 
   ========================================= */

/* Variables and Reset */
:root {
    --primary: #f94a00; /* Laranja SelaMax Vibrante */
    --primary-hover: #e04200;
    --primary-transparent: rgba(249, 74, 0, 0.1);
    --secondary: #03070b;
    --accent: #f94a00; 
    --accent-red: #ef4444; 
    
    --bg-main: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --border-color: #e2e8f0;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style-position: inside;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Announcement Bar Ticker */
.ticker-wrap {
    background-color: #03070b; /* Preto e muito escuro como pedido */
    color: #fff;
    width: 100%;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 16s linear infinite;
}

.t-item {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0 16px;
    text-transform: uppercase;
}

.t-separator {
    color: #f94a00; /* Cor primária nas bolinhas */
    font-weight: bold;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Header */
.header {
    border-bottom: 1px solid var(--border-color);
    background: white;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.header-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.header-logo.centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.sub-header-strip {
    background-color: rgba(249, 74, 0, 0.05); /* Very light brand orange tint */
    border-bottom: 1px solid rgba(249, 74, 0, 0.1);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.sub-header-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(249,74,0,0) 0%, rgba(249,74,0,1) 50%, rgba(249,74,0,0) 100%);
}

.sub-header-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(249,74,0,0) 0%, rgba(249,74,0,1) 50%, rgba(249,74,0,0) 100%);
}

.strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #03070b; /* Dark brand black */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strip-content i {
    color: #f94a00; /* Brand orange drop icon */
    font-size: 18px;
}

.header-logo span {
    font-size: 12px;
    font-weight: 600;
    vertical-align: top;
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-icon {
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    transition: background 0.2s;
}

.header-icon:hover {
    background: var(--bg-tertiary);
}

.cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #f94a00;
    color: white;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Product Section */
.product-section {
    padding: 24px 16px 48px;
}

.breadcrumbs {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Gallery Shopify Style */
.product-gallery {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.main-image {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 100%;
    /* Maintain a nice square aspect ratio common in Shopify */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-scroll {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
}

.main-image-scroll:active {
    cursor: grabbing;
}

.main-image-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.carousel-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    scroll-snap-align: center;
    scroll-snap-stop: always; /* Impede pular múltiplas imagens ao deslizar rápido */
    padding: 10px;
    background: white;
}

/* Setas da Galeria */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    color: #475569;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.2s;
    font-size: 20px;
    padding: 0;
}

.gallery-arrow:hover {
    background: #fff;
    color: #f94a00;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-arrow.prev-arrow {
    left: 10px;
}

.gallery-arrow.next-arrow {
    right: 10px;
}

@media (max-width: 480px) {
    .gallery-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .gallery-arrow.prev-arrow { left: 8px; }
    .gallery-arrow.next-arrow { right: 8px; }
}

.discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-red);
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.thumbnail-list {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    overflow-x: auto;
    padding: 4px 4px 12px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.thumbnail-list::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.thumbnail-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.thumbnail {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.thumbnail.active {
    border-color: var(--primary);
    border-width: 2px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(249, 74, 0, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Matches main image */
    padding: 4px;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stars {
    color: #f59e0b; /* Golden Yellow */
    display: flex;
    font-size: 16px;
}

.product-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.compare-price {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.sale-price {
    font-size: 36px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.installments {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: -12px;
}

.installments strong {
    color: var(--text-primary);
}

/* Urgency Bar */
.urgency-bar {
    background: var(--bg-secondary);
    border: 1px dashed var(--accent);
    padding: 16px;
    border-radius: var(--radius-md);
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.urgency-text i {
    font-size: 20px;
}

.progress-bar-bg {
    height: 8px;
    background: #fed7aa;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    height: 100%;
    width: 85%;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: progressPulse 2s infinite alternate;
}

@keyframes progressPulse {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.stock-text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Variants */
.variant-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-btn {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.variant-btn:hover {
    border-color: var(--text-muted);
}

.variant-btn.active {
    border-color: var(--primary);
    background: var(--primary-transparent);
    color: var(--primary);
}

/* Purchase Actions */
.purchase-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.quantity-selector {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 120px;
    height: 56px;
}

.qty-btn {
    width: 40px;
    background: var(--bg-secondary);
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--border-color);
}

#quantity {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
    appearance: textfield;
}
#quantity::-webkit-inner-spin-button, 
#quantity::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  appearance: none;
  margin: 0; 
}

.btn-buy {
    flex: 1;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

.btn-buy:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

#btn-buy-pulse {
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-item i {
    font-size: 24px;
    color: var(--text-primary);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 12px;
    border-radius: var(--radius-md);
}

.payment-icons {
    display: flex;
    gap: 8px;
}

/* Shipping Calculator */
.shipping-calculator {
    margin-top: 8px;
}
.shipping-calculator label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cep-input-group {
    display: flex;
    gap: 8px;
}

#cep {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

#cep:focus {
    border-color: var(--primary);
}

.btn-calc {
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

/* Benefits Banner */
.benefits-banner {
    background: var(--bg-primary);
    padding: 64px 16px;
    background: #0f172a; /* Dark sleek background */
    color: white;
}

.benefits-banner h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefits-banner p {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 16px;
}
.benefits-banner strong {
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Accordion */
.accordion-section {
    padding: 64px 16px;
    max-width: 800px;
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 32px;
}

.accordion-container {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: background 0.2s;
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-header i {
    transition: transform 0.3s;
}
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 24px 24px;
    background: white;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.accordion-content ul, .accordion-content ol {
    padding-left: 20px;
    margin-top: 10px;
}
.accordion-content li {
    margin-bottom: 8px;
}

/* Sticky Mobile CTA - Redesign 100% igual à referência */
.sticky-mobile-buy {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 99999;
    display: none; 
    border-top: 1px solid #f1f5f9;
    margin: 0; /* Remove qualquer margem lateral */
    box-sizing: border-box;
}

.sticky-mobile-buy.show {
    display: block;
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.sticky-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.sticky-title {
    font-size: 15px;
    font-weight: 800;
    color: #03070b;
    line-height: 1.1;
    flex: 1;
}

.sticky-stars {
    color: #f59e0b;
    font-size: 14px;
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.sticky-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.price-container-sticky {
    display: flex;
    align-items: center;
    gap: 16px;
}

.s-current-price {
    font-size: 20px;
    font-weight: 900;
    color: #16a34a;
    line-height: 1;
}

.s-old-price {
    font-size: 14px;
    color: #64748b;
    text-decoration: line-through;
    font-weight: 600;
    opacity: 0.8;
}

.s-save-badge {
    background: #16a34a;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.s-btn-comprar {
    width: 100%;
    background-color: #f94a00;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(249, 74, 0, 0.3);
    transition: transform 0.2s;
}

.s-btn-comprar:hover {
    transform: translateY(-3px);
    background-color: #e04200;
    box-shadow: 0 6px 20px rgba(249, 74, 0, 0.5);
}

.s-scroll-top {
    width: 50px;
    height: 50px;
    background: #03070b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 32px 0 24px;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3, .footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-logo {
    font-size: 24px;
    color: var(--secondary) !important;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

/* Responsive */
@media (max-width: 860px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-gallery {
        position: static;
        margin-bottom: 20px;
        padding: 0;
        width: 100%;
        overflow: hidden; /* Evita que o scroll-snap cause estouro lateral visual */
    }
    .main-image {
        border-radius: 0;
        border: none;
        margin: 0; /* Remove a margem negativa que causava o corte */
        width: 100%;
        aspect-ratio: 1 / 1;
        min-height: auto;
        box-shadow: none;
        background: #fff;
    }
    .carousel-img {
        padding: 0;
        object-fit: contain; /* Ajusta a imagem inteira sem cortes (essencial para infográficos) */
        width: 100%;
        height: 100%;
    }
    .thumbnail-list {
        padding: 0 4px 12px;
        margin: 8px 0 0;
        gap: 8px;
        justify-content: flex-start;
    }
    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 4px;
    }

    .product-title {
        font-size: 26px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .footer-col:first-child, .footer-col:last-child {
        grid-column: span 2;
    }
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Custom Product Info CSS */
.product-info-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    margin-top: 8px; /* Reduzido de 24px/32px implícitos */
}

.stock-badge {
    align-self: center;
    border: 3px solid #f94a00;
    color: #f94a00;
    padding: 6px 16px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 0;
}

.product-title-custom {
    font-size: 32px; 
    font-weight: 900;
    line-height: 1.15;
    color: #03070b;
    margin: 0;
    text-align: left;
}

.reviews-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.stars-custom {
    color: #facc15;
    font-size: 18px;
}
.reviews-count {
    color: #03070b;
    font-weight: 600;
    font-size: 16px;
}

.price-row-custom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 0;
}
.old-price-group {
    display: flex;
    align-items: center;
    gap: 6px;
}
.current-price {
    color: #f94a00;
    font-size: 19px;
    font-weight: 900;
}
.old-price {
    color: #64748b;
    font-size: 14px;
    text-decoration: line-through;
    font-weight: 700;
    opacity: 0.7;
}
.save-tag {
    background-color: #f94a00;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.size-info {
    color: #03070b;
    font-weight: 800;
    font-size: 15px;
    margin-top: 8px;
}

.size-pill {
    align-self: flex-start;
    background-color: #03070b; /* Original had purple, we use dark or orange. User asked for this palette */
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
}

.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    color: #03070b;
    font-weight: 900;
    font-size: 15px;
    margin: 16px 0;
}
.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #f94a00;
}
.divider-text span {
    padding: 0 16px;
}

.kits-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.kit-card {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    padding: 20px 16px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
}
.kit-card.active {
    border-color: #f94a00;
    background-color: rgba(249, 74, 0, 0.03); 
}

.kit-badge {
    position: absolute;
    top: -14px;
    right: -2px;
    background-color: #f94a00;
    color: #fff;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 14px;
    border-radius: 6px;
    border-bottom-left-radius: 0;
}

.kit-radio {
    margin-right: 14px;
}
.kit-radio input[type="radio"] {
    display: none;
}
.radio-custom {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
}
.kit-card.active .radio-custom {
    border-color: #f94a00;
}
.kit-card.active .radio-custom::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f94a00;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kit-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.kit-title {
    color: #03070b;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.protection-tag {
    border: 1px solid #f94a00;
    color: #f94a00;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
}
.kit-subtitle {
    color: #03070b;
    font-weight: 700;
    font-size: 14px;
    opacity: 0.8;
}

.kit-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.k-price {
    color: #f94a00;
    font-weight: 900;
    font-size: 18px;
}
.k-old-price {
    color: #64748b;
    font-size: 14px;
    text-decoration: line-through;
    font-weight: 700;
}

.btn-buy-custom {
    width: 100%;
    background-color: #f94a00;
    color: #fff;
    border: none;
    padding: 24px;
    font-size: 22px;
    font-weight: 900;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(249, 74, 0, 0.4);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
}
.btn-buy-custom:hover {
    transform: translateY(-3px);
    background-color: #e04200;
    box-shadow: 0 6px 20px rgba(249, 74, 0, 0.5);
}

/* Reviews Carousel */
.testimonial-carousel {
    padding: 8px 0;
    margin: 4px 0;
    text-align: center;
    max-width: 100%;
}
.testimonial-slides {
    position: relative;
    overflow: hidden;
    min-height: 80px; /* Alinhado com a necessidade de 83px */
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-slide {
    display: none;
    flex-direction: column;
    align-items: flex-start; /* Alinhado à esquerda */
    gap: 8px;
    animation: fade 0.3s ease-in-out;
    width: 100%;
}
.t-slide.active {
    display: flex;
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.t-text {
    font-size: 15px;
    font-weight: 700;
    color: #03070b;
    line-height: 1.3;
    padding: 0;
    text-align: left;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
}
.t-name {
    color: #03070b;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.6;
}
.t-author .stars-custom {
    font-size: 12px;
}
.t-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}
.t-nav i {
    color: #f94a00;
    font-size: 18px;
    cursor: pointer;
    padding: 2px;
}
.t-dots {
    display: flex;
    gap: 6px;
}
.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background 0.2s;
}
.t-dot.active {
    background-color: #f94a00;
}

@media (max-width: 400px) {
    .t-text {
        font-size: 14px;
    }
    .testimonial-carousel {
        padding: 10px 0;
    }
    .testimonial-slides {
        min-height: 70px;
    }
}

/* Delivery Timeline */
.delivery-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 8px 0 16px;
}
.t-line {
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #03070b;
    z-index: 0;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.timeline-icon {
    width: 44px;
    height: 44px;
    background-color: #f94a00; /* Original is purple, user asked for f94a00 palette */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 8px;
    box-shadow: 0 0 0 6px white;
}
.timeline-date {
    font-size: 12px;
    color: #03070b;
    font-weight: 900;
}
.timeline-status {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* Trust Accordions */
.trust-accordions {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e2e8f0;
}
.t-accordion-item {
    border-bottom: 1px solid #e2e8f0;
}
.t-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 16px 0;
    font-size: 20px;
    font-weight: 900;
    color: #03070b;
    cursor: pointer;
}
.hdr-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hdr-left i {
    font-size: 26px;
    color: #f94a00; /* original is purple */
}
.t-accordion-header > i {
    font-size: 20px;
    color: #f94a00;
    transition: transform 0.2s;
}
.t-accordion-item.open .t-accordion-header > i {
    transform: rotate(180deg);
}
.t-accordion-content {
    display: none;
    padding-bottom: 24px;
    color: #333333; /* cinza escuro */
    font-size: 15px;
    line-height: 1.6;
}
.t-accordion-content p {
    margin-bottom: 12px;
}
.t-accordion-item.open .t-accordion-content {
    display: block;
}
/* Stylized Reviews Header */
.ml-stylized-header {
    text-align: center;
    margin-bottom: 24px;
    margin-top: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ml-badge-count {
    background: #f94a00;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(249, 74, 0, 0.3);
}

.ml-badge-count i {
    font-size: 18px;
}

.ml-stylized-title {
    font-size: 36px;
    font-weight: 900;
    color: #03070b;
    margin-bottom: 12px;
    line-height: 1.1;
}

.ml-stylized-title span {
    color: #f94a00;
}



@media (max-width: 768px) {
    .ml-stylized-title {
        font-size: 28px;
    }
}

/* Custom Product Description Section */
.product-description-custom {
    padding: 16px 16px;
    max-width: 800px;
    margin: 0 auto;
}
.desc-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: #03070b;
    text-align: left;
    margin-bottom: 12px;
}
.desc-header p {
    text-align: left;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}
.desc-images {
    margin: 32px 0;
}
.promo-img {
    display: block;
    margin: 0 auto 16px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.promo-img-sm {
    display: block;
    margin: 0 auto 24px;
    max-width: 80%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.desc-benefits h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
    font-weight: 900;
    color: #03070b; /* User requested keeping similar layout but matching palette */
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    flex: 1;
    min-width: 130px;
}
.circle {
    width: 64px;
    height: 64px;
    line-height: 56px;
    border: 4px solid #f94a00;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    color: #f94a00;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}
.stat-item strong {
    color: #03070b;
    font-weight: 800;
}
.stats-conclusion {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #03070b;
    padding: 24px;
    background: rgba(249,74,0,0.05);
    border-radius: 12px;
}
.desc-features {
    text-align: center;
    margin-top: 48px;
}
.desc-features h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 24px;
    color: #03070b;
}
.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    max-width: 600px;
}
.feature-list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
}
.feature-list .chk {
    color: #f94a00;
    font-weight: 900;
    margin-right: 8px;
}
.waves {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 16px;
    display: block;
}

/* Mercado Livre Style Reviews */
.ml-reviews {
    max-width: 800px;
    margin: 16px auto 48px;
    padding: 0 16px;
}
.ml-title {
    font-size: 24px;
    font-weight: 500;
    color: #03070b;
    margin-bottom: 32px;
}
.ml-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 768px) {
    .ml-reviews-grid {
        flex-direction: row;
        align-items: flex-start;
    }
    .ml-summary {
        width: 40%;
        position: sticky;
        top: 20px;
    }
    .ml-list {
        width: 60%;
    }
}
.ml-summary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ml-average-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.ml-average {
    text-align: left;
    flex-shrink: 0;
}

.ml-user-media {
    flex-grow: 1;
    overflow: hidden;
}

.ml-media-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Oculta scrollbar no Firefox */
}

.ml-media-scroll::-webkit-scrollbar {
    display: none; /* Oculta scrollbar no Chrome/Safari */
}

.ml-media-box {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    scroll-snap-align: start;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ml-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-score {
    font-size: 64px;
    font-weight: 300;
    color: #03070b;
    line-height: 1;
}

.ml-stars {
    color: #f94a00;
    font-size: 22px;
    margin: 8px 0;
}

.ml-count {
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 768px) {
    .ml-average-row {
        flex-direction: row; /* Mantem ao lado no mobile tbm */
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    .ml-score {
        font-size: 48px; /* Reduz um pouco no mobile para caber */
    }
    .ml-stars {
        font-size: 16px;
    }
    .ml-user-media {
        width: auto;
        flex: 1;
    }
}
.ml-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ml-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
}
.ml-progress-bg {
    flex: 1;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}
.ml-progress-fill {
    height: 100%;
    background-color: #f94a00;
}
.ml-qty {
    min-width: 32px;
    text-align: right;
}
.ml-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ml-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
}
.ml-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.ml-item-stars {
    color: #f94a00;
    font-size: 16px;
}
.ml-item-date {
    font-size: 13px;
    color: #94a3b8;
}
.ml-item-text {
    font-size: 15px;
    color: #03070b;
    line-height: 1.5;
    margin-bottom: 16px;
}
.ml-item-photos {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.ml-photo-box {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    position: relative;
}
.ml-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ml-item-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ml-like-btn, .ml-dislike-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}
.ml-like-btn:hover, .ml-dislike-btn:hover {
    background: #f1f5f9;
}
.ml-see-all-btn {
    width: 100%;
    display: block;
    text-align: center;
    color: #03070b;
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.ml-see-all-btn:hover {
    background: #f1f5f9;
}

/* Product Video Showcase */
.product-video-section {
    padding: 0 16px 64px 16px; /* Removido padding superior */
    margin-top: 0; /* Colado na seção anterior */
}
.video-container {
    max-width: 400px; 
    width: 100%;
    margin: 0 auto;
    border-radius: 24px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #000;
    aspect-ratio: 9 / 16; 
}
.showcase-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
    .video-container {
        border-radius: 12px;
        max-width: 100%;
    }
    .product-title-custom {
        font-size: 28px;
    }
    .current-price {
        font-size: 24px;
    }
}

/* Adaptação para Celulares Pequenos (iPhone SE, Galaxy Fold, etc) */
@media (max-width: 360px) {
    .product-title-custom { font-size: 20px; line-height: 1.1; }
    .current-price { font-size: 17px; }
    .old-price { font-size: 13px; }
    .save-tag { font-size: 9px; padding: 2px 4px; }
    .s-current-price { font-size: 18px; }
    .s-old-price { font-size: 13px; }
    .s-save-badge { font-size: 11px; }
    .s-btn-comprar { font-size: 16px; padding: 10px; }
    .header-logo { height: 20px; }
    .desc-header h2, .ml-stylized-title { font-size: 22px; }
    .product-info-custom { padding: 0 4px; }
}

