/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --dark-color: #14213d;
    --light-color: #f1faee;
    --white: #ffffff;
    --text-color: #333333;
    --gray: #666666;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: auto; /* Remove scroll suave do navegador */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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


/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    position: relative;
    width: 30px;
    height: 21px;
    z-index: 10001;
}

.mobile-menu div {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    position: absolute;
}

.mobile-menu .line1 {
    top: 0;
}

.mobile-menu .line2 {
    top: 9px;
}

.mobile-menu .line3 {
    top: 18px;
}

.mobile-only {
    display: none;
}

.btn-whatsapp-mobile {
    background: #25D366;
    color: var(--white) !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    justify-content: center;
    width: 100%;
}

.btn-whatsapp-mobile:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color)),
                url('https://i.postimg.cc/yYGPySd1/background-da-hero.png') center/cover no-repeat;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    margin-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 33, 61, 0.75);
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    text-align: left;
    color: var(--white);
    max-width: 700px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 0;
    animation: fadeInUp 1s ease;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle-main {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.15s backwards;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.3s backwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-marcas {
    flex-shrink: 0;
    width: 350px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-marcas img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    border-radius: 12px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-produto {
    background: #25D366;
    color: var(--white);
    justify-content: center;
    width: 100%;
}

.btn-whatsapp-produto:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp-cta:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.9);
}

/* Sobre Section */
.sobre {
    background: var(--light-color);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sobre-text h2 {
    text-align: left;
    margin-bottom: 15px;
    font-size: 2rem;
}

.sobre-anos,
.sobre-estrutura {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.sobre-text .btn {
    margin-top: 20px;
}

/* Produtos Section */
.produtos {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.95), rgba(29, 53, 87, 0.95)),
                url('https://i.postimg.cc/pXSZJnTL/background-pneus.png') center/cover fixed;
    color: var(--white);
}

.produtos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 33, 61, 0.3);
}

.produtos .container {
    position: relative;
    z-index: 2;
}

.produtos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
    justify-content: center;
}

/* Card de produto - Padrão para telas médias (4 por linha) */
.produto-card {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    width: calc(25% - 20px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

/* Força 5 produtos por linha APENAS em telas grandes (Desktop) */
@media (min-width: 1400px) {
    .produto-card {
        flex: 0 0 calc(20% - 20px);
        max-width: calc(20% - 20px);
        width: calc(20% - 20px);
        padding: 25px 18px;
        gap: 12px;
        min-height: 420px;
    }
}

.produto-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.produto-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.produto-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.produto-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
}

.produto-marca {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 18px;
    margin: 0;
}

.marca-lateral {
    position: absolute;
    right: 0;
    top: 50%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%) rotate(180deg);
    font-size: 50px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    z-index: 0;
    padding: 10px 0;
}

.produto-preco {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 6px;
}

.produto-card .btn {
    flex-shrink: 0;
    margin: 0;
    font-size: 1rem;
    padding: 14px 25px;
}

.preco-antigo {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
    white-space: nowrap;
    margin: 0;
}

.preco-novo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin: 0;
}

/* Ajustes para telas grandes (5 por linha) */
@media (min-width: 1400px) {
    .produto-image {
        height: 130px;
    }

    .produto-card h3 {
        font-size: 1.5rem;
    }

    .produto-marca {
        font-size: 0.8rem;
    }

    .preco-antigo {
        font-size: 0.9rem;
    }

    .preco-novo {
        font-size: 1.5rem;
    }

    .produto-card .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

.produtos-info {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
}

.produtos-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.garantia {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px !important;
}

.promocao-info {
    font-weight: 500;
}

.kit-info {
    font-weight: 600;
    color: var(--primary-color);
}

/* Avaliações Section */
.avaliacoes {
    background: var(--white);
    padding: 80px 0;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.avaliacao-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.avaliacao-stars {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.avaliacao-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.avaliacao-autor {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.avaliacao-local {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Banner CTA */
.banner-cta {
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.banner-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-size: 1.1rem;
    padding: 18px 40px;
}

.banner-cta .btn-secondary:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contato Section */
.contato {
    background: var(--light-color);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
    justify-items: center;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 500px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    max-width: 100%;
    overflow: hidden;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.info-text p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    overflow-wrap: break-word;
    word-break: break-all;
}

.info-text a:hover {
    color: var(--dark-color);
}

.contato-map {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.contato-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 100%;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-content p {
    margin: 5px 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-content strong {
    color: var(--primary-color);
}

/* Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.popup-body {
    padding: 50px 40px;
    text-align: center;
}

.popup-body h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.popup-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.timer-box {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    min-width: 80px;
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 5px;
    font-weight: 600;
}

.popup-offer {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.popup-icon {
    margin-bottom: 20px;
}

.popup-offer h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.popup-offer p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .mobile-menu {
        display: flex;
    }

    /* Dentro de @media (max-width: 768px) */
.nav-list {
    position: fixed;
    top: 0;
    /* MUDANÇA: Em vez de right: -100%, fixamos na direita e usamos transform */
    right: 0;
    width: 100%; /* Ou width: 70% se não quiser tela cheia */
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
    
    /* NOVA LÓGICA DE ANIMAÇÃO (Evita scroll lateral) */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.nav-list.active { /* Traz o menu de volta para a tela */ transform: translateX(0); }

    .mobile-only {
        display: block;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        max-width: 400px;
    }

    .mobile-only a::before {
        display: none;
    }

    .nav-list li {
        width: 100%;
        max-width: 400px;
    }

    .nav-list a {
        font-size: 1.4rem;
        padding: 15px 25px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        text-align: left;
        border-radius: 8px;
        transition: var(--transition);
    }

    @media (hover: hover) {
        .nav-list a:hover {
            background: var(--light-color);
        }
    }

    .nav-list a::before {
        content: '●';
        color: var(--primary-color);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .mobile-menu.active .line1 {
        transform: rotate(45deg);
        top: 9px;
    }

    .mobile-menu.active .line2 {
        opacity: 0;
    }

    .mobile-menu.active .line3 {
        transform: rotate(-45deg);
        top: 9px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle-main {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-marcas {
        display: none;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-text {
        order: 1;
    }

    .sobre-image {
        order: 2;
    }

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

    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .contato-content {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
        overflow-x: hidden;
    }

    .contato-info {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }

    .contato-map {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }

    .info-item {
        padding: 15px 20px;
    }

    .info-text a {
        font-size: 0.8rem;
        word-break: break-all;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Mobile - 2 colunas para produtos */
    .produto-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        width: calc(50% - 20px);
    }

    .popup-body {
        padding: 40px 25px;
    }

    .popup-body h2 {
        font-size: 1.5rem;
    }

    .popup-offer {
        padding: 25px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .timer-box {
        min-width: 70px;
        padding: 12px 15px;
    }

    .timer-number {
        font-size: 1.6rem;
    }

    .timer-label {
        font-size: 0.65rem;
    }
}

/* Tablet - 3 colunas */
@media (max-width: 1200px) {
    .produto-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle-main {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Mobile pequeno - 1 coluna para produtos */
    .produto-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 25px;
    }

    .produto-image {
        height: 120px;
    }

    /* Permite quebra de linha no mobile se necessário */
    .produto-card h3,
    .produto-marca,
    .preco-antigo,
    .preco-novo {
        white-space: normal;
    }

    .countdown-timer {
        gap: 8px;
    }

    .timer-box {
        min-width: 60px;
        padding: 10px 8px;
    }

    .timer-number {
        font-size: 1.4rem;
    }

    .timer-label {
        font-size: 0.6rem;
    }
}
