/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #100b0d;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    padding: 40px 0;
    text-align: center;
}

.logo {
    max-width: 826px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

/* Video Section */
.video-container {
    /* background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
    aspect-ratio: 16/9;
    position: relative; */
}

.video-placeholder {
    /* width: 100%;
    height: 100%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px; */
}

/* Pricing Section */
.pricing-section {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    background: #fff;
    border: 2px solid #076959;
    border-radius: 15px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.price-card:hover {
    /* Removido efeito hover */
}

.price-card.featured {
    border-color: #188e7b;
    transform: scale(1.05);
    background: #e8f7f4;
}

.price-card.featured:hover {
    /* Removido efeito hover */
}

.price-card .badge {
    background: #076959;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
    margin: -20px -20px 20px -20px;
}

.price-card.featured .badge {
    background: #188e7b;
    color: #e3b967;
    text-transform: uppercase;
}

.price-card h3 {
    color: #2a5ba5;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.price-card.featured h3 {
    font-size: 23px;
    text-shadow: 0 2px 2px rgba(0,0,0,0.3);
}

.bottles-count {
    font-size: 35px;
    font-weight: 700;
    color: #231f20;
    margin: 10px 0;
}

.price-card.featured .bottles-count {
    font-size: 48px;
    color: #5ce1e6;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000;
    -webkit-text-stroke: 1px #000;
}

.supply-text {
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-image {
    width: 180px;
    height: auto;
    margin: 20px 0;
}

.price-info {
    margin: 20px 0;
}

.old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #666;
}

.new-price {
    font-size: 60px;
    font-weight: 900;
    color: #0cc0df;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    -webkit-text-stroke: 2px #000;
}

.price-card.featured .new-price {
    font-size: 87px;
    color: #0cad60;
}

.savings-badge {
    background: #fccd15;
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    margin: 10px 0;
    display: inline-block;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.features-list li {
    color: #2a5ba5;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: "✓";
    background: #2a5ba5;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-button {
    background: linear-gradient(180deg, #dadada 50%, #e0e0e0 51%);
    color: #231f20;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 25px;
    font-weight: 800;
    cursor: pointer;
    width: 88%;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
    pointer-events: none;
}

.cta-button:hover {
    background: linear-gradient(180deg, #72c4ff 0%, #72b9ff 100%);
    transform: translateY(-2px);
}

.cta-button.featured {
    background: linear-gradient(180deg, #fccd15 50%, #ffd814 51%);
    border: 2px solid #a78a19;
}

.payment-methods {
    max-width: 60%;
    margin: 10px auto;
}

.total-price {
    font-size: 20px;
    margin: 10px 0;
    color: #000;
}

/* Controle de visibilidade desktop/mobile */
.mobile-layout {
    display: none;
}

/* Esconde elementos desktop no mobile */
@media (max-width: 768px) {
    .mobile-layout {
        display: flex;
    }

    /* Esconde todos os elementos desktop quando está no mobile */
    .content > p.bottles-count:not(.mobile-layout p.bottles-count),
    .content > p.supply-text:not(.mobile-layout p.supply-text),
    .content > img.product-image,
    .content > div.price-info:not(.mobile-layout div.price-info),
    .content > ul.features-list:not(.mobile-layout ul.features-list),
    .content > p.free-shipping:not(.mobile-layout p.free-shipping),
    .content > p.surprise-gift:not(.mobile-layout p.surprise-gift),
    .content > .payment-methods,
    .content > .total-price,
    .content > .cta-button:not(:last-child) {
        display: none !important;
    }
}

/* Content Section */
.content-section {
    background: #100b0d;
    padding: 50px 0;
}

.content-title {
    font-size: 27px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 700;
}

/* YouTube Style Elements */
.youtube-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.channel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #666;
}

.channel-info h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.subscriber-count {
    color: #858d93;
    font-size: 14px;
}

.subscribe-button {
    background: #ff0005;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
}

/* Video Actions */
.video-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.action-button {
    background: #222;
    color: #e2e2e2;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

/* Comments Section */
.comments-container {
    background: #222;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #525252;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-user {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;
}

.comment-text {
    font-size: 14px;
    line-height: 1.4;
}

.comment-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #525252;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-section {
        flex-direction: column;
        align-items: stretch;
        padding: 0 10px;
    }

    /* Reordena para o plano de 6 potes aparecer primeiro no mobile */
    .price-card.featured {
        order: -2;
        transform: none;
        margin-bottom: 15px;
    }

    /* Plano de 3 potes aparece em segundo */
    .price-card:last-child {
        order: -1;
    }

    .price-card {
        max-width: 100%;
        margin-bottom: 15px;
        border-radius: 20px;
        padding: 0;
        overflow: hidden;
    }

    .price-card .badge {
        margin: 0;
        padding: 15px;
        font-size: 18px;
        border-radius: 0;
    }

    .price-card.featured .badge {
        background: #076959;
        color: #ffd700;
    }

    .price-card .content {
        padding: 20px;
    }

    /* Layout horizontal para mobile */
    .mobile-layout {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-left {
        flex: 0 0 40%;
    }

    .mobile-right {
        flex: 1;
        text-align: left;
    }

    .bottles-count {
        font-size: 24px;
        margin: 0 0 5px 0;
    }

    .price-card.featured .bottles-count {
        font-size: 28px;
        color: #00d4ff;
    }

    .supply-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .product-image {
        width: 100%;
        max-width: 120px;
        margin: 0;
    }

    .price-info {
        margin: 10px 0;
    }

    .old-price {
        font-size: 18px;
        display: inline;
        margin-right: 10px;
    }

    .new-price {
        font-size: 36px;
        display: inline;
        -webkit-text-stroke: 1px #000;
    }

    .price-card.featured .new-price {
        font-size: 42px;
    }

    .features-list {
        margin: 10px 0;
    }

    .features-list li {
        font-size: 13px;
        margin: 5px 0;
        color: #076959;
        font-weight: 600;
    }

    .features-list li::before {
        content: "✓";
        background: transparent;
        color: #076959;
        width: auto;
        height: auto;
        margin-right: 5px;
    }

    .free-shipping {
        font-size: 16px;
        margin: 5px 0;
    }

    .surprise-gift {
        font-size: 18px;
        margin: 5px 0;
    }

    .cta-button {
        width: 100%;
        font-size: 20px;
        padding: 12px 20px;
        margin-top: 15px;
    }

    .payment-methods {
        display: none;
    }

    .total-price {
        display: none;
    }

    .special-highlight {
        background: transparent;
        color: #fccd15;
        padding: 0;
        font-size: 14px;
    }

    .content-title {
        font-size: 24px;
    }

    .video-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .price-card .badge {
        font-size: 16px;
        padding: 12px;
    }

    .bottles-count {
        font-size: 20px;
    }

    .price-card.featured .bottles-count {
        font-size: 24px;
    }

    .new-price {
        font-size: 32px;
    }

    .price-card.featured .new-price {
        font-size: 38px;
    }

    .features-list li {
        font-size: 12px;
    }

    .cta-button {
        font-size: 18px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}

/* Animations */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.animate-zoom {
    animation: zoomInOut 2s linear infinite;
}

/* Special Highlight */
.special-highlight {
    background: #fccd15;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    margin: 10px 0;
}

.free-shipping {
    color: #00bf63;
    font-weight: 700;
    font-size: 20px;
}

.surprise-gift {
    color: #5ce1e6;
    font-size: 21px;
    font-weight: 900;
    text-shadow: 1px 1px 2px #000;
    -webkit-text-stroke: 0.5px #000;
    animation: tada 4s linear infinite;
}

@keyframes tada {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
}




/* Offers Section */
.offers-section {
    padding: 20px 0;
    width: 100%;
    margin: auto;
}

.stock-section{
    background-color: #F69D14;
}
.stock-banner {
    background: #F69D14; 
    color: black;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    position: relative;
}

#countdown {
    font-family: Arial, sans-serif;
    color: #FFFFFF; /* Cor do contador */
    font-weight: bold;
}

/* Seta triangular abaixo do banner */
.stock-banner::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #F69D14;
}

.stock-banner h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
    font-size: 2.5rem;
}

.stock-banner p {
    font-size: 20px;
    margin: 0;
}

.stock-count {
    font-weight: 700;
    color: #1a1a1a;
}

.offers-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.offer-card {
    background: #eeeeee; /* CINZA */
    border: 2px solid #c1c4ca;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: 0px 0px 50px #00000050; /* Adiciona o mesmo efeito de destaque */

}

.offer-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.offer-card.featured {
    background: #faedd8; /* Fundo amarelo claro */
    border: 2px solid #F69D14;
    transform: scale(1.02);
    box-shadow: 0px 0px 50px #00000050;
    z-index: 9;
    order: 1;
}

.offer-card.featured:hover {
    background: #faedd8; /* Fundo amarelo claro */
    border: 2px solid #F69D14;
    transform: scale(1.05);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #F69D14;
    color: black;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
}

.most-popular-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    background: #F69D14;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.offer-header {
    font-size: 1rem;
    color: #231f20;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
    .offer-header {
        font-size: 1.6rem;
    }
}

.offer-image {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-image img {
    height: auto;
    max-height: 250px;
}

.payment-methods{
    width: 100%;
    /* max-width: 200px; */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;    
    margin: 10px 0;
}

.payment-methods img{
    max-width: 200px;
    max-width: 100%;
    height: auto;
}

.offer-price {
    margin: 0;
}

.price {
    color: #231f20;
    font-size: 48px;
    font-weight: 700;
}

.per-bottle {
    color: #231f20;
    font-size: 20px;
    font-weight: 400;
}


.buy-button img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.buy-button:hover img {
    transform: scale(1.05);
}



.total-price {
    font-size: 16px;
    margin: 15px 0 5px;
}

.total-price .original {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.shipping {
    color: #0066cc; /* Azul para o frete grátis */
    font-size: 14px;
    font-weight: 500;
}

.payment-methods {
    margin-top: 15px;
}

.payment-methods img {
    max-width: 200px;
    height: auto;
}


/* Cards de Preço */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.price-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card do meio (destaque) */
.price-card.featured {
    border: 2px solid #F69D14;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Badge de "Best Value" */
.best-value-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #F69D14;
    color: black;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

/* Cabeçalho do Card */
.price-card-header {
    margin-bottom: 20px;
}

.price-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.supply-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Área da Imagem */
.product-image-container {
    height: 300px; /* Altura fixa para todas as imagens */
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Preço */
.price-tag {
    font-size: 48px;
    color: #b08637;
    font-weight: 700;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price-tag .currency {
    font-size: 32px;
}

.price-tag .per-bottle {
    font-size: 16px;
    color: #666;
    align-self: flex-end;
    margin-bottom: 12px;
}

/* Bônus */
.bonus-tag {
    max-width: 250px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    margin: 10px auto;
    display: inline-block;
}
.bonus-tag img {
    width: 100%;
    height: auto;
}


.buy-button:hover {
    transform: translateY(-2px);
}

/* Preço Total e Frete */
.total-price {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.total-price .original {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.shipping {
    color: #28a745;
    font-size: 14px;
    font-weight: 600;
}

/* Hover Effects */
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-card.featured:hover {
    transform: translateY(-5px) scale(1.02);
} 

.certifications{
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certifications img{
    width: 100%;
    max-width: 600px;
    height: auto;
}

.elementor-element:has(#smartplayer) {
    width: 100%;
}
    
.btn-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;    
}
.btn-primary img{
    max-width: 300px;
    width: 100%;
    height: auto;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-primary img {
    max-width: 300px;
    width: 100%;
    height: auto;
    animation: pulse 2s infinite ease-in-out;
}

/* Opcional: pausa a animação quando o usuário preferir reduzir movimento */
@media (prefers-reduced-motion: reduce) {
    .btn-primary img {
        animation: none;
    }
}



/* Responsivo */
/* Base styles for mobile first approach */
.container {
    width: 95vw;
    padding: 0;
    margin: 0 auto;
}

/* Estilos padrão para mobile (até 575px) */
.offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
}

.offer-card {
    max-width: 100%;
    margin: 0 auto;
    order: 2;
}

.dois-potes{
    order: 3;
}

.tres-potes{
    order: 2;
}

.seis-potes{
    order: 1;
}

.stock-banner h2 {
    font-size: 18px;
}

.price {
    font-size: 3rem;
}

.per-bottle {
    font-size: 13px;
}

.buy-button {
    max-width: 100%;
}

.footer-links {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 12px; /* Adiciona o tamanho da fonte */
}

@media screen and (max-width: 1279px) {
    .offers-grid {
        flex-wrap: wrap;
}    
}

/* Small devices (576px and up) */
@media (min-width: 576px) {
    .container {
        width: 90vw;
    }

    .stock-banner h2 {
        font-size: 20px;
    }

    .offer-card {
        max-width: 400px;
    }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
    .container {
        width: 90vw;
    }


    .stock-banner h2 {
        font-size: 24px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
    }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
    .container {
        width: 90vw;
    }

    .offers-grid {
        flex-wrap: wrap;
    }

    .offer-card.featured {
        transform: scale(1.02);
    }

    .stock-banner h2 {
        font-size: 2.5rem;
    }
}

/* Extra large devices (1140px and up) */
@media (min-width: 1280px) {
    .container {
        width: 1140px;
    }
    .offers-grid {
        flex-wrap: nowrap;
    }
}

/* XXL devices (1280px and up) */
@media (min-width: 1280px) {
    .container {
        max-width: 90vw;
    }
}

/* Ajustes específicos para tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .offer-card.featured {
        grid-column: auto;
        max-width: none;
    }
}

/* Ajustes para garantir que o vídeo seja responsivo */
.video-wrapper {
    margin: 0 auto;
    max-width: 800px;
}

/* Ajustes para imagens responsivas */
.offer-image img {
    max-width: 100%;
    height: auto;
}

.payment-methods img,
.certifications img,
.guarantee-badge {
    max-width: 100%;
    height: auto;
}

/* Controles de imagem globais */
img {
    max-width: 100%;
    height: auto;
}

/* Ajustes específicos para imagens de oferta */
.offer-image {
    max-width: 190px !important;
    width: 100%;
    max-width: 300px; /* Limita a largura máxima */
    margin: 0 auto;
    padding: 10px;
}

.um-pote .offer-image{
    max-width: 70% !important;
}

.offer-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ajustes para botões de compra */
.buy-button {
    width: 100%;
    max-width: 250px; /* Limita a largura máxima */
    margin: 0 auto;
}

.buy-button img {
    width: 100%;
    height: auto;
}

/* Ajustes para métodos de pagamento */
.payment-methods {
    width: 100%;
    max-width: 200px; /* Limita a largura máxima */
    margin: 1px auto;
}

/* Ajustes para badges e bônus */
.bonus-tag {
    width: 100%;
    max-width: 139px; /* Limita a largura máxima */
    margin: 0px auto 10px;
}

/* Ajustes para certificações no footer */
.certifications {
    width: 100%;
    max-width: 500px; /* Limita a largura máxima */
    margin: 20px auto;
}

/* Responsividade para diferentes tamanhos de tela */
@media (max-width: 576px) {
    
    .buy-button {
        max-width: 150px;
    }
    
    .payment-methods {
        max-width: 180px;
    }
}

@media screen and (min-width: 1024px) {
    .offer-card {
    width: calc(100% / 3 - 14px);
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    padding: 20px 13px;
    max-width: calc(100%/3 - 10px);
    }

    .offer-card{
        order: unset !important
    }

        /* Ajustes específicos para imagens de oferta */
    .offer-image {
        max-width: 100% !important;
        width: 100%;
        max-width: 300px; /* Limita a largura máxima */
        margin: 0 auto;
        padding: 15px;
    }

    .offer-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}