/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.main-header {
    border-bottom: 1px solid #e0e0e0;
}

.header-top {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.logo {
    display: flex;
    justify-content: center;  /* Centraliza horizontalmente */
    align-items: center;      /* Centraliza verticalmente (se altura for definida) */
    height: 17px;            /* Ajuste a altura conforme necessário */
}

.logo-img {
    max-width: 17%;          /* Impede que a imagem fique maior que o container */
    height: auto;
}

.header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.urgente {
    background-color: red;   /* Fundo vermelho */
    color: white;            /* Texto branco */
    padding: 4px 8px;        /* Espaçamento interno opcional */
    border-radius: 4px;      /* Cantos arredondados (opcional) */
    font-weight: bold;       /* Deixa o texto mais forte (opcional) */
    text-transform: uppercase; /* Mantém o texto em maiúsculas */
    font-size: 14px;         /* Tamanho da fonte (ajustável) */
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-selector span {
    color: #ffffff;
}

.location-selector select {
    border: none;
    background: transparent;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.subscribe-btn {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #e6b800;
}

.login-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.login-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 10px;
    color: #f9f9f9;
}

.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.logo h1 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

/* Category Section */
.category-section {
    margin-bottom: 30px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.category-title {
    font-family: 'Georgia', serif;
    font-size: 35px;
    font-weight: bold;
    color: #2c2c2c;
    margin-right: 23px;
}

.urgente-remocion {
    background-color: rgb(255, 255, 255);
    color: rgb(171, 0, 0);
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 20px auto;
    width: fit-content;
    max-width: 90%;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from { opacity: 1; }
    to { opacity: 0.85; }
}

.category-line {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, #00a0b0 0%, #40c4c4 100%);
}

.category-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.category-nav a {
    text-decoration: none;
    color: #000000;
    font-size: 10px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.category-nav a:hover,
.category-nav a.active {
    color: #333;
}

.category-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #00a0b0;
}

/* Article Styles */
.main-article {
    max-width: 800px;
}

.article-meta {
    margin-bottom: 15px;
}

.article-category {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-family: 'Georgia', serif;
    font-size: 35px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 19px;
    font-weight: bold;
}

.article-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.4;
    font-style: italic;
}

/* Article Content */
.article-content {
    font-size: 16px;
    line-height: 1.8;
}

.content-intro {
    margin-bottom: 40px;
    font-size: 18px;
}

.content-intro strong {
    color: #333;
}

/* Benefits Section */
.benefits-section {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #00a0b0;
}

.benefits-section h3 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

/* CTA Section */
.cta-section {
    margin: 50px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.price-container {
    margin: 30px 0;
}

.old-price {
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.new-price {
    font-size: 36px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.discount {
    background-color: #ffcc00;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.cta-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.cta-button.secondary {
    background-color: #007bff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.cta-button.secondary:hover {
    background-color: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.cta-subtitle {
    font-size: 16px;
    margin-top: 15px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    margin: 50px 0;
}

.testimonials-section h3 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #00a0b0;
    border-radius: 5px;
}

.testimonial blockquote {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial cite {
    font-weight: bold;
    color: #333;
    font-style: normal;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #e8f5e8;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid #28a745;
}

.guarantee-section h3 {
    font-size: 24px;
    color: #28a745;
    margin-bottom: 15px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.urgency-text {
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}

#timer {
    color: #ffcc00;
    font-size: 24px;
}


.urgente-viewers {
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    display: inline-block;
    margin: 20px auto;
    text-align: center;
    animation: pulse 1s infinite alternate;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Para dar um efeito leve de piscar */
@keyframes pulse {
    from { opacity: 1; }
    to { opacity: 0.85; }
}

.imagem-abaixo {
    display: block;            /* necessário para funcionar com margin auto */
    margin: 20px auto 0 auto;  /* centraliza horizontalmente */
    width: 100%;               /* ocupa toda a largura disponível */
    max-width: 640px;          /* limite de tamanho */
    border-radius: 8px;        /* opcional: cantos arredondados */
}

/* Centralizar horizontalmente */
#live-viewers {
    width: fit-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.fb-comments-wrapper {
  max-width: 600px;
  margin: 30px auto;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #050505;
  
  /* 🔽 ESTILO DO FUNDO */
  background-color: #f0f2f5; /* Cinza claro estilo Facebook */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* opcional, para profundidade */
}

.fb-comments-count {
  font-weight: bold;
  margin-bottom: 15px;
}

.fb-comment,
.fb-reply {
  display: flex;
  margin-top: 15px;
}

.fb-reply {
  margin-left: 50px;
}

.fb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.fb-comment-body {
  flex: 1;
}

.fb-username {
  color: #365899;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 2px;
}

.fb-comment-text {
  margin: 2px 0 4px 0;
  line-height: 1.4;
}

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

.fb-comment-actions span {
  margin-right: 10px;
  cursor: pointer;
}

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

/* Footer */
.main-footer {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #333;
}

.checkout-form h2 {
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.checkout-form h3 {
    margin: 25px 0 15px 0;
    color: #333;
    font-size: 18px;
}

.checkout-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.payment-options {
    margin-bottom: 25px;
}

.payment-options label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
}

.payment-options input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.order-summary h4 {
    margin-bottom: 15px;
    color: #333;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 15px;
}

.checkout-btn {
    width: 100%;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #218838;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-controls {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .category-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 24px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .cta-box {
        padding: 25px 20px;
    }
    
    .new-price {
        font-size: 28px;
    }
}
