/* Reset e configurações básicas */
html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

ul {
    list-style-type: none;
}

/* Cores e variáveis */
:root {
    --bg-dark: #111111;
    --bg-gray-900: #1a1a1a;
    --bg-gray-800: #2a2a2a;
    --bg-gray-700: #3a3a3a;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --red-500: #e10600;
    --red-600: #dc2626;
    --red-700: #b91c1c;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: #ffffff;
}

.text-red {
    color: var(--red-500);
}

.font-semibold {
    font-weight: 600;
}

.min-h-screen {
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 3rem 1rem 5rem;
    margin-top: 30px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    text-align: center;
}

.hero-copy h1 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray-300);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 0.875rem;
    color: var(--text-gray-400);
}

.hero-form {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--bg-gray-800);
}

.hero-form h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    color: var(--text-gray-300);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.form-group input {
    width: 100%;
    background: var(--bg-gray-800);
    border: 1px solid var(--bg-gray-700);
    color: white;
    padding: 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--red-500);
}

.btn-primary {
    width: 100%;
    background: var(--red-600);
    color: white;
    border: 2px solid transparent;
    padding: 0.75rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--red-700);
    border-color: white;
}

/* Product Showcase */
.product-showcase {
    height: fit-content;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--bg-gray-800);
    border-bottom: 1px solid var(--bg-gray-800);
    padding: 1rem 0.75rem;
}

.product-showcase p {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
}

/* Shopinfo Section */
.shopinfo-section {
    padding: 3rem 1rem 5rem;
    background: var(--bg-gray-900);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Carousel */
.carousel-container {
    position: relative;
}

.carousel, .shelf-common {
    overflow: hidden;
    width: 100%;
}

.carousel-track, .shelf-common > ul {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-item {
    min-width: 100%;
    padding: 0.5rem;
}

.card {
    background: var(--bg-gray-800);
    border: 1px solid var(--bg-gray-700);
    padding: 1.5rem;
    border-radius: 0.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--red-500);
    transform: scale(1.02);
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.card p {
    color: var(--text-gray-300);
    font-size: 0.875rem;
    line-height: 1.6;
}

.values-list p {
    margin-bottom: 0.5rem;
}

.social-proof p {
    margin-bottom: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Carousel Navigation */
.carousel-nav {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-gray-800);
    border: 1px solid var(--bg-gray-700);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--bg-gray-700);
    border-color: var(--red-500);
}

.carousel-btn.prev {
    left: -50px;
}

.carousel-btn.next {
    right: -50px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b7280;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: var(--red-500);
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 1rem 5rem;
    background: var(--bg-gray-900);
}

.benefits-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray-300);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-gray-800);
    border-radius: 0.5rem;
}

.benefit-item i {
    color: var(--red-500);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.875rem;
}

/* Use Cases Section */
.use-cases-section {
    padding: 3rem 1rem 5rem;
    background: var(--bg-dark);
}

.use-cases-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.use-cases-grid {
    display: grid;
    gap: 1rem;
}

.use-case-card {
    background: var(--bg-gray-800);
    border: 1px solid var(--bg-gray-700);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.use-case-card:hover {
    border-color: var(--red-500);
}

.use-case-card i {
    color: var(--red-500);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.use-case-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.use-case-card p {
    color: var(--text-gray-400);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 1rem 5rem;
    background: var(--bg-gray-900);
}

.faq-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-container {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-gray-800);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--bg-gray-700);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: white;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ef4444;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1rem 1rem;
}

.faq-answer p {
    color: var(--text-gray-300);
    font-size: 0.875rem;
}

/* Footer CTA */
.footer-cta {
    padding: 3rem 1rem 4rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-gray-800);
    text-align: center;
}

.footer-cta h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.footer-cta p {
    font-size: 1rem;
    color: var(--text-gray-400);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-copy {
        text-align: left;
    }
    
    .hero-copy h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-form h3 {
        font-size: 1.5rem;
    }
    
    .product-showcase {
        height: 600px;
    }
    
    .product-showcase p {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .carousel-item {
        min-width: 50%;
    }
    
    .carousel-nav {
        display: block;
    }
    
    .carousel-indicators {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    .benefit-item span {
        font-size: 1.125rem;
    }
    
    .benefits-section h2 {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .use-cases-section h2 {
        font-size: 2.25rem;
    }
    
    .use-case-card i {
        font-size: 3rem;
    }
    
    .use-case-card h3 {
        font-size: 1.25rem;
    }
    
    .use-case-card p {
        font-size: 1rem;
    }
    
    .faq-section h2 {
        font-size: 2.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    .footer-cta h3 {
        font-size: 1.875rem;
    }
    
    .footer-cta p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .carousel-indicators.mobile-only {
        display: flex !important;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-copy h1 {
        font-size: 3rem;
    }
    
    .carousel-item {
        min-width: 33.333%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Utility Classes */
.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
}

/* CSS shelfs de dentro da PDP */
.mz__item {
    background: #f1f1f1;
    padding: 10px;
    position: relative;
    width: 220px;
    height: 425px;
    margin: 0 auto;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
}

.mz__item .mz__top {
    display: flex;
    width: calc(100% + 1.5px);
    position: absolute;
    top: -1px;
    right: -.5px;
    align-items: start;
    justify-content: space-between;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    height: 35px;
    border: 1px solid #ffaa1d;
    background: #ffaa1d;
    color: var(--primary-white-color);
}

.shelf-common__flags {
    position: static;
}

.mz__flags--discount-hightlight,
.shelf-common__flags .flag {
    display: none !important;
}

.shelf-common__flags--hightlight {
    min-height: 30px;
}

.shelf-common__flags .flag[class*=discount-product]:before {
    content: "" !important;
}

.shelf-common__flags .flag[class*=discount-product] {
    display: flex !important;
    background-color: var(--primary-green-color);
    color: var(--primary-white-color);
    font-weight: 700;
    font-size: 12px;
    border-radius: 5px;
    height: 30px;
    width: 35px;
    justify-content: center;
    align-items: center;
    filter: unset;
    padding: unset !important;
}

.mz__top .wishlist-icon {
    display: none;
}

.mz__link {
    text-decoration: none;
    margin-top: 30%;
    display: block;
}

.mz__image img {
    width: 90%;
    max-width: 180px;
    height: auto;
    margin: 0px auto 25px auto;
    display: block;
}

.mz__product-name {
    font-size: .775rem;
    overflow: hidden;
    font-weight: 600;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 18px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: var(--primary-black-color);
    margin: 10px 0;
}

.specWrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
}

.mz__specification .processador,
.mz__specification .video {
    background: #000000eb;
    font-size: 2rem !important;
    padding: 5px;
    text-transform: uppercase;
    color: var(--primary-white-color);
    font-weight: 700;
    border-radius: 6px;
}

.mz__specification .memoria, .mz__specification .hd, .mz__specification .ssd {
    display: none;
}

.mz__specification .video {
    background: #1E943D !important;
    width: 55%;
}

.mz__specification .processador {
    width: 40%;
}

.mz__item .discount-price {
    display: none;
}

.product-field {
    font-size: 0;
}

.mz__specification ul li {
    font-size: 9px;
    width: 100% !important;
    margin-bottom: 0 !important;
}

.product-field.product_field_25 {
    line-height: 1;
}

.mz__item .produto-esgotado {
    font-weight: 700;
    color: var(--primary-red-color);
}

.mz__price .value:not(.d) {
    display: inline;
    font-size: .69rem !important;
    font-weight: 400;
    color: #000;
}

.mz__price .label {
    font-size: .71rem;
    display: block;
    margin-top: -1px;
    color: #000;
    font-weight: 400;
}

.shelf-common__best-price {
    text-align: left;
}

.mz__price .value.d {
    font-size: 1.25rem;
    display: inline-block;
    color: var(--primary-green-color);
    font-weight: 900;
}

.mz__top .wishlist-icon.wishlisted:before {
    background-image: url(https://shopinfo.vteximg.com.br/arquivos/heartCheck.png?v=637605666545800000);
}

.catalog__shelf.compre-junto a.compreJuntoButton {
    margin-top: 15%;
    text-transform: none;
    height: 30px;
    min-width: 100%;
    line-height: 18px;
    background: url(https://shopinfo.vteximg.com.br/arquivos/vector-cart-buy-button.png?v=638666736439400000);
    background-repeat: no-repeat;
    background-color: var(--primary-green-color);
    padding-left: 15%;
    background-position: 10%;
    border: var(--primary-green-color);
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.mz__item .offer-highlight {
    display: none !important;
}

.mz__item .mz__top .left {
    width: 20%;
    margin: 2px 0px 0px 2px;
}

.mz__item .mz__top .right {
    width: 78%;
    text-align: right;
    margin-right: 5px;
    font-weight: bold;
}

.mz__item .mz__top .right .default-highlight {
    margin-top: 10px;
    font-size: 0.7rem;
    color: black;
}

@media screen and (min-width: 768px) {
    .mz__item:hover {
        border: 1px solid var(--primary-red-color);
        box-shadow: 0px 0px 4px 0px rgba(255, 3, 3, 1);
    }
}

@media screen and (max-width: 768px) {
    .mz__item .mz__top .right .default-highlight {
        font-size: 0.65rem;
        width: min-content;
        text-align: right;
        margin-left: auto;
        margin-top: 0;
    }

    li[layout] {
        min-width: unset;
    }

    .mz__top .wishlist-icon {
        display: block;
        margin-left: auto;
    }
    .shelf-common__flags{
        display:block!important;
    }
}

/* Estilos para dispositivos móveis */
@media screen and (max-width: 767px) {
    .divFiltro .int{
        padding:0 !important;
    }
    
    .content-filter.mobile {
        display: block;
    }

    .mz__item .mz__top .right{
        width: 100% !important;
        margin-right: 10px !important;
    }

    .mz__compareBox {
        display: flex !important;
        align-items: center;
        cursor: pointer;
        font-size: .85rem;
        position: relative;
        top: 1.8em;
        right: .3em;
        left: unset;
    }

    .mz__compareBox:before {
        content: '';
        position: absolute;
        left: 27px;
        height: 13px;
        width: 13px;
        bottom: 22px;
        /* background-color: #707070; */
        cursor: pointer;
        border-radius: 0%;
        transition: .25s;
        top: unset;
    }
}

.review-wrapper {
    margin: 0px !important;
    position: absolute;
    top: 40px;
    right: 10px;
    min-width: min-content !important;
}

div[class^="konfidency-reviews"][data-sku] .star {
    width: 16px !important;
    height: 16px !important;
}

div[class^="konfidency-reviews"][data-sku] :first-child :first-child {
    margin: unset;
    width: fit-content;
}

div[class^="konfidency-reviews"][data-sku] .review-count {
    color: black;
    font-weight: normal;
}

div[class^="konfidency-reviews"] .konfidency-reviews-showcase-rating.empty {
    visibility:hidden;
}

/* Footer */
footer .container {
    width: 80%;
}
footer span.info-payment {
    padding-right: 1.2%;
    line-height: 28px;
    font-weight: 600;
    padding-left: unset;
    margin: 0;
    display: inline;
}

.footer__pagamentos-container {
    justify-content: center;
}

.footer__seal {
    justify-content: start;
}

@media (max-width: 768px) {
    footer .footer__institucional ul li a {
        height: unset;
        line-height: unset;
        margin-bottom: 20px;
    }

    footer span.info-payment {
        margin-left: 5% !important;
        padding-left: 3% !important;
        float: unset;
        display: inline;
    }

    footer span.info-payment img {
        width: auto !important;
    }

    span.info-payment:nth-child(2) img {
        margin-left: 0 !important;
    }

    span.info-payment:nth-child(3) img {
        width: 14% !important;
        margin-left: 3%;
        margin-right: 2%;
        margin-bottom: 4px;
    }

    span.info-payment:nth-child(4) img {
        width: 19% !important;
        margin-left: -1%;
    }

    span.info-payment:nth-child(5) img {
        width: 23% !important;
        margin-right: -3%;
        margin-left: 0 !important;
    }

    span.info-payment:nth-child(6) img {
        margin-left: 0;
        margin-right: 7%;
    }

    span.info-payment:nth-child(7) img {
        width: 13% !important;
        margin-left: -5%;
    }

    span.info-payment:nth-child(8) img {
        margin-left: 0 !important;
        padding-left: 1%;
        width: 15% !important;
    }

    span.info-payment:nth-child(9) img {
        width: 15% !important;
        margin-left: 4%;
        margin-right: 1%;
    }

    span.info-payment:nth-child(10) img {
        width: 18% !important;
    }

    span.info-payment:nth-child(11) img {
        width: 20% !important;
        height: auto;
        margin-left: 0 !important;
        padding-left: 1%;
    }
}