/* Variáveis CSS */
:root {
    --primary-color: #c57648;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --dark-bg: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --gradient-primary: linear-gradient(135deg, #c57648 0%, #c57648 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
}


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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-bg);
    overflow-x: hidden;
}

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

/* Barra Superior */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 0;
    position: sticky;
    display:flex;
    justify-content: center;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size:12px;
    font-weight: 600;
}

.live-tag i {
    color: #ef4444;
    animation: pulse 1.5s infinite;
}

.viewers-now {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size:12px;
}

/* Headline */
.headline {
    text-align: center;
    padding: 10px 0;
   
    border-radius: 16px;
    margin: 10px 0;
  
}

.headline h1 {
    font-size: 2em;
    font-weight: 800;
    color: var(--text-color);
  
    line-height: 1.2;
}

.headline h2 {
    font-size: 2em;
    color: var(--primary-color);
    
    font-weight: 700;
}

.headline h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Container de Vídeo */
.vsl-container {
  
 

  
}

.sound-warning {
    margin-top: 10px;
    
    color: black;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size:14px;
  
    justify-content:center;
    animation: pulse 2s infinite; /* Aplica a animação "pulse" */
}

@keyframes pulse {
    0% {
        transform: scale(1); /* Tamanho normal */
    }
    50% {
        transform: scale(1.1); /* Aumenta o tamanho */
    }
    100% {
        transform: scale(1); /* Retorna ao tamanho normal */
    }
}

/* Timer de Oferta */
.offer-timer {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 16px;
}

.timer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.timer-header i {
    color: var(--primary-color);
    font-size: 1.5em;
}

.timer-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.timer-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    min-width: 100px;
    box-shadow: var(--shadow-md);
}

.timer-box .time {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.timer-box .label {
    font-size: 0.9em;
    color: var(--text-color);
    opacity: 0.8;
}

/* Grade de Ofertas */
.offers-section {
    margin: 60px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.offer-card.featured {
    border: 3px solid var(--primary-color);
}

.featured-tag {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.offer-header {
    margin-bottom: 20px;
}

.offer-header h3 {
    font-size: 1.5em;
    color: var(--text-color);
    margin-bottom: 5px;
}

.treatment {
    color: var(--primary-color);
    font-weight: 500;
}

.offer-image {
    margin: 20px 0;
}

.offer-image img {
    max-width: 200px;
    height: auto;
}

.offer-details {
    margin: 20px 0;
}

.old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 0.9em;
}

.new-price {
    font-size: 1.8em;
    color: var(--primary-color);
    font-weight: 700;
    margin: 10px 0;
}

.installments {
    color: var(--text-color);
    font-size: 0.9em;
}

.installments span {
    color: var(--primary-color);
    font-weight: 600;
}

.discount {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 10px;
}

.offer-footer {
    margin-top: 20px;
}

.shipping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.buy-button.pulse {
    animation: pulse 2s infinite;
}

/* Seção de Garantia */
.guarantee-section {
    background: white;
    padding: 60px 30px;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: var(--shadow-lg);
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.2em;
}

/* Selos de Segurança */
.trust-badges {
    padding: 40px 0;
}

.badges-grid {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.badge {
    display:flex;
    align-items:center;
    justify-content:center;
}

.badge img {
    max-width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.badge span {
    font-size: 0.9em;
    color: var(--text-color);
    font-weight: 500;
}

/* FAQ */
.faq-section {
    background: white;
    padding: 60px 30px;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: var(--shadow-lg);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    font-size: 2em;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    background: var(--light-bg);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-content {
    padding: 20px;
    display: none;
    background: white;
}

.accordion-content.active {
    display: block;
}

/* Seção de Comentários */
.comments-section {
    max-width: 800px;
    margin: 0px auto;
    padding: 20px;
    background: #f0f2f5;
    border-radius: 8px;
}

.comments-header {
    font-size: 20px;
    color: #1c1e21;
    margin-bottom: 20px;
    font-weight: 600;
}

.facebook-comments {
    background: white;
    border-radius: 8px;
    padding: 12px;
}

.comment {
    display: flex;
    margin-bottom: 20px;
    padding: 8px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-content {
    flex: 1;
}

.comment-header {
    margin-bottom: 4px;
}

.comment-header strong {
    color: #050505;
    font-weight: 600;
}

.comment-content p {
    margin: 0;
    color: #1c1e21;
    font-size: 15px;
    line-height: 1.3333;
}

.comment-actions {
    margin-top: 8px;
    font-size: 12px;
    color: #65676b;
}

.comment-actions a {
    color: #65676b;
    text-decoration: none;
    font-weight: 600;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.reactions {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.reactions i {
    font-size: 14px;
    margin-right: 2px;
}

.reactions .fa-thumbs-up {
    color: #2078f4;
}

.reactions .fa-heart {
    color: #f33e58;
}

.reactions span {
    margin-left: 6px;
    color: #65676b;
}

.facebook-plugin {
    margin-top: 20px;
    padding: 12px;
    text-align: center;
    border-top: 1px solid #ccd0d5;
    color: #65676b;
    font-size: 13px;
}

.plugin-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.plugin-footer .fa-facebook {
    font-size: 16px;
    margin-right: 6px;
    color: #1877f2;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-disclaimer {
    color: #9ca3af;
    margin: 20px 0;
    font-size: 0.9em;
}

.footer-contact {
    color: #9ca3af;
    font-size: 0.9em;
}

/* Elementos Flutuantes */
.floating-elements {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.viewers-counter {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 0 1px;
    }
    
    .headline h1 {
        font-size: 1.7em;
    }
    
    .headline h2 {
        font-size: 1em;
    }
    
    .headline h3 {
        font-size: 1.2em;
    }
    
    .timer-container {
        flex-wrap: wrap;
    }
    
    .timer-box {
        min-width: 80px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
       
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
