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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header G1 */
.g1-header {
    background-color: #c4170c;
    color: white;
}

.header-top {
    background-color: #a91409;
    padding: 8px 0;
}

.globo-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

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

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

.logo img {
    height: 40px;
}

.search-icon {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.search-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main Content */
.main-content {
    background-color: white;
    min-height: 100vh;
    padding: 20px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #c4170c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Article */
.article {
    max-width: 800px;
    margin: 0 auto;
}

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

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #333;
}

.article-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.author {
    color: #c4170c;
}

.social-share {
    display: flex;
    gap: 10px;
}

.share-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.share-btn.facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.share-btn.whatsapp {
    color: #25d366;
    border-color: #25d366;
}

.share-btn:hover {
    background-color: #f0f0f0;
}

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

.featured-image {
    margin: 30px 0;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

/* CTA Boxes */
.cta-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.cta-box.highlight {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.cta-box.urgent {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    animation: pulse-box 2s infinite;
}

.cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.pulse {
    animation: pulse-button 1.5s infinite;
}

.cta-button.final {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    font-size: 1.2rem;
    padding: 18px 35px;
}

/* Quote Box */
.quote-box {
    background-color: #f8f9fa;
    border-left: 4px solid #c4170c;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.quote-box blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #555;
}

.quote-box cite {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Info Box */
.info-box {
    background-color: #e8f4fd;
    border: 1px solid #bee5eb;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.info-box h4 {
    color: #0c5460;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 8px 0;
    border-bottom: 1px solid #bee5eb;
}

.info-box li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonial-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    color: #555;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}

.final-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #bdc3c7;
    font-size: 1rem;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-top: 5px;
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.guarantees span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Animations */
@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes pulse-box {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes pulse-button {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .globo-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 10px;
    }
    
    .final-cta {
        padding: 25px;
    }
    
    .final-cta h3 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .cta-button.final {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}



/* Before and After Section */
.before-after-section {
    margin: 40px 0;
    text-align: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.before-after-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.before-after-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.before-after-images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.before-after-images img:hover {
    transform: scale(1.03);
}

/* Trusted Brands Section */
.trusted-brands-section {
    margin: 40px 0;
    text-align: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trusted-brands-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-logos img {
    max-height: 60px; /* Adjust as needed */
    width: auto;
}

.brand-logos img:hover {
    filter: none;
    opacity: 1;
}

/* Adjust G1 logo size */
.logo img {
    height: 35px; /* Smaller size for G1 logo */
    width: auto;
}

@media (max-width: 768px) {
    .before-after-section h3,
    .trusted-brands-section h3 {
        font-size: 1.5rem;
    }
    
    .brand-logos img {
        max-height: 40px;
    }
}


