.esconder { display: none; }

/* Reset Moderno */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove estilos padrão de listas */
ul, ol {
    list-style: none;
}

/* Remove estilos padrão de links */
a {
    text-decoration: none;
    color: inherit;
}

/* Melhora a renderização de texto */
body {
    line-height: 1.5;
    text-rendering: optimizeSpeed;
    -webkit-text-size-adjust: 100%;
}

/* Melhora a consistência de fontes em todos os navegadores */
body, button, input, textarea {
    font-family: inherit;
}

/* Remove estilos padrão de botões */
button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

/* Torna as imagens responsivas por padrão */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Remove estilos padrão de formulários */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove outline padrão do Chrome */
:focus {
    outline: 0;
    outline-offset: 0;
}

/* Melhora a legibilidade do texto */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    /* Cores principais */
    --primary: #b08637;
    --secondary: #d1b37c;
    --accent: #c09857;
    --dark: #030303;
    --light: #ffffff;
    --gray: #f5f5f5;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: #FFFFFF; /* Nova cor de fundo */
    color: var(--light);
    padding: 40px 0;
    text-align: center;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subheadline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary);
}
img.headline-custom {
  max-width: 600px;
  width: 100%;
  margin: 20px auto 30px;
  display: block;
}

/* Video Section */
.video-section {
    padding: 0px 0 60px 0;
    background: #FFFFFF; /* Nova cor de fundo */
}

.video-container {
    max-width: 400px; /* Ajuste para largura menor para enfatizar o formato vertical */
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 176%; /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Offers Section */
.offers-section {
    padding: 20px 0;
    background-color: var(--light);
}

.stock-section{
    background-color: #01a2d6;
}
.stock-banner {
    background: #01a2d6; 
    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 #01a2d6;
}

.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: #c6eef9; /* Fundo amarelo claro */
    border: 2px solid #01a2d6;
    transform: scale(1.02);
    box-shadow: 0px 0px 50px #00000050;
    z-index: 9;
    order: 1;
}

.offer-card.featured:hover {
    background: #c6eef9; /* Fundo amarelo claro */
    border: 2px solid #01a2d6;
    transform: scale(1.05);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #01a2d6;
    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: #01a2d6;
    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;
}

/* Guarantee Section */
.guarantee-section {
    background-color: var(--gray);
    padding: 60px 0;
}

.reviews-box {
    text-align: center;
    margin-bottom: 40px;
}

.stars {
    color: #ffd700;
    font-size: 2rem;
    margin: 10px auto;
    width: fit-content;
}

.stars img{
    max-width: 150px;
    width: 100%;
    height: auto;
}

.guarantee-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.guarantee-badge {
    width: 120px;
    margin: 20px auto;
}

/* Footer */
.main-footer {
    background: #01a2d6;
    color: #000000;
    padding: 60px 0 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    align-content: center;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
}

.footer-links a:hover {
    color: #000000;
}

.copyright, .disclaimer {
    text-align: center;
    font-size: 0.7rem;
    margin-top: 20px;
}

/* 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 #01a2d6;
    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: #01a2d6;
    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;
    }
}