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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Destacar palavras em vermelho */
.highlight-red {
    color: #c41e3a;
    font-weight: 700;
}

/* Site Header */
.site-header {
    width: 100%;
    background-color: #c41e3a;
    margin-bottom: 0;
}

.header-top {
    background-color: #c41e3a;
    padding: 24px 16px;
    text-align: center;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.logo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.header-bottom {
    background-color: #c41e3a;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #fff;
}

.header-nav span {
    white-space: nowrap;
}

.header-nav span:nth-child(1),
.header-nav span:nth-child(3),
.header-nav span:nth-child(5),
.header-nav span:nth-child(7) {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.header-nav span:nth-child(1):hover,
.header-nav span:nth-child(3):hover,
.header-nav span:nth-child(5):hover,
.header-nav span:nth-child(7):hover {
    opacity: 0.8;
}

/* Container Principal */
.advertorial {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    background-color: #fff;
}

/* Header do Artigo */
.article-header {
    margin-bottom: 24px;
}

.article-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.article-header h1 .highlight-pink {
    color: #e91e63;
    font-weight: 700;
}

.article-header h1 .highlight-pink.underline {
    text-decoration: underline;
    text-decoration-color: #e91e63;
    text-underline-offset: 4px;
}

.subtitle {
    font-size: 1.125rem;
    color: #666;
    font-weight: 400;
}

/* Metadados do Artigo */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.article-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.8rem;
}

.article-date {
    color: #666;
    font-size: 0.8rem;
}

.meta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

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

.social-btn {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    transition: opacity 0.2s ease;
}

.social-btn:hover {
    opacity: 0.8;
}

.social-btn.facebook {
    background-color: #1877f2;
}

.social-btn.twitter {
    background-color: #1da1f2;
}

.social-btn.pinterest {
    background-color: #e60023;
}

.share-count {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.share-count strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Banner de Destaque da Revista */
.magazine-banner {
    background-color: #424242;
    color: #fff;
    padding: 16px;
    margin-bottom: 24px;
    position: relative;
    border-radius: 4px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.banner-content p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
}

.banner-arrow {
    font-size: 2rem;
    color: #ff0000;
    font-weight: 700;
    line-height: 1;
}

/* Lead / Introdução */
.lead {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #2a2a2a;
}

/* Seções de Conteúdo */
.content-section {
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 24px 0 16px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 20px 0 12px;
    color: #1a1a1a;
}

.content-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 16px 0 8px;
    color: #1a1a1a;
}

.content-section p {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #333;
    text-align: justify;
}

/* Listas */
.problem-list,
.benefits-list {
    margin: 16px 0 24px 24px;
    padding-left: 8px;
}

.problem-list li,
.benefits-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.benefits-list li strong {
    color: #1a1a1a;
}

/* Citações */
.doctor-quote {
    background-color: #f5f5f5;
    border-left: 4px solid #0066cc;
    padding: 16px;
    margin: 24px 0;
    font-style: italic;
}

.doctor-quote p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
}

.doctor-quote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #666;
    text-align: right;
    margin-top: 8px;
}

/* Imagens */
.hero-image,
.content-image {
    margin: 24px 0;
    text-align: center;
}

.adv-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
    border-radius: 8px;
}

.hero-image video,
.content-image video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
    border-radius: 8px;
}

/* CTAs (Botões de Ação) */
.cta-container {
    text-align: center;
    margin: 32px 0;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4),
                0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5),
                0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* CTA Images */
.cta-image-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-image-link:hover {
    transform: scale(1.05);
}

.cta-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

.cta-btn.large {
    font-size: 1.375rem;
    padding: 22px 50px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45),
                0 3px 8px rgba(0, 0, 0, 0.12);
}

.cta-btn.large:hover {
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.55),
                0 5px 12px rgba(0, 0, 0, 0.18);
}

/* Oferta Especial */
.special-offer {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #22c55e;
    border-radius: 8px;
    padding: 10px;
    margin: 24px 0;
    text-align: center;
}

.special-offer p {
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.4;
}

.offer-image {
    margin: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.price-comparison {
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-old,
.price-new {
    margin: 0;
}

.special-offer .cta-container {
    margin: 10px 0 0;
}

.special-offer .cta-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
    width: 100%;
    max-width: 100%;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2px;
}

.price-old .price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #999;
    text-decoration: line-through;
}

.price-new .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
}

/* Depoimentos */
.testimonials {
    margin: 32px 0;
}

.testimonial {
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
    padding: 16px;
    margin: 16px 0;
    border-radius: 4px;
}

.testimonial h4 {
    color: #0066cc;
    margin-bottom: 8px;
}

.testimonial p {
    margin-bottom: 0;
}

.testimonial-long {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.testimonial-long h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #0066cc;
}

.testimonial-subtitle {
    font-weight: 600;
    font-size: 1.125rem;
    color: #d32f2f;
    margin-bottom: 16px;
}

/* Nota do Editor */
.editor-note {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.editor-note h3 {
    color: #856404;
    margin-bottom: 16px;
}

.note-label {
    font-weight: 700;
    color: #856404;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.editor-note p {
    margin-bottom: 16px;
}

/* Resultados em Destaque */
.results-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    margin: 32px 0;
}

.results-highlight h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.results-subtitle {
    font-size: 1.125rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.result-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

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

.urgency-text {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.stock-info {
    margin-top: 20px;
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
}

.final-cta-section {
    text-align: center;
    margin: 32px 0;
}

.final-urgent-text {
    margin-top: 24px;
    font-size: 1rem;
    color: #d32f2f;
    font-weight: 500;
}

/* Oferta Exclusiva */
.exclusive-offer {
    background-color: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 32px 24px;
    margin: 32px 0;
    text-align: center;
}

.exclusive-offer p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Aviso Importante */
.important-note {
    background-color: #ffebee;
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}

.important-note h3 {
    color: #c62828;
    margin-bottom: 16px;
}

.important-note p {
    margin-bottom: 12px;
    font-weight: 500;
}

/* Comentários */
.comments {
    margin: 48px 0;
    padding-top: 32px;
    border-top: 2px solid #ddd;
}

.comments-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.comment-with-image {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.comment-with-image .comment {
    margin-bottom: 0;
}

.comment-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.comments h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.comments-count {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 24px;
}

.comment {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.comment-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.comment-date {
    font-size: 0.875rem;
    color: #999;
}

.comment-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

.load-more-btn {
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

/* Footer */
.article-footer {
    text-align: center;
    padding: 32px 0;
    margin-top: 48px;
    border-top: 1px solid #ddd;
    color: #999;
    font-size: 0.875rem;
}

/* Footer Institucional */
.institutional-footer {
    width: 100%;
    background-color: #c41e3a;
    border-bottom: 2px solid #333;
    margin-top: 48px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 20px;
    gap: 24px;
}

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

.anvisa-logo {
    max-width: 120px;
    height: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-nav span {
    color: #fff;
}

/* Responsividade - Mobile */
@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-right {
        align-items: flex-start;
        width: 100%;
    }

    .banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-arrow {
        align-self: flex-end;
    }
    .logo-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .header-nav {
        font-size: 0.75rem;
        gap: 4px;
    }

    .header-top {
        padding: 20px 12px;
    }

    .header-bottom {
        padding: 10px 12px;
    }

    .footer-content {
        padding: 30px 12px 16px;
        gap: 20px;
    }

    .anvisa-logo {
        max-width: 100px;
    }

    .footer-nav {
        font-size: 0.75rem;
        gap: 4px;
    }

    .offer-img {
        max-width: 180px;
    }

    .special-offer {
        padding: 8px;
        margin: 20px 0;
    }

    .special-offer p {
        font-size: 0.875rem;
        margin-bottom: 4px;
    }

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

    .price-comparison {
        margin: 6px 0;
        gap: 3px;
    }

    .price-label {
        font-size: 0.75rem;
    }

    .price-old .price-value {
        font-size: 0.95rem;
    }

    .price-new .price-value {
        font-size: 1.25rem;
    }

    .special-offer .cta-btn {
        font-size: 0.875rem;
        padding: 10px 16px;
        width: 100%;
    }
}

/* Responsividade - Tablet */
@media (min-width: 768px) {
    .header-top {
        padding: 32px 16px;
    }

    .logo-title {
        font-size: 3rem;
    }

    .logo-subtitle {
        font-size: 1rem;
    }

    .header-nav {
        font-size: 0.95rem;
    }

    .advertorial {
        padding: 24px;
    }

    .article-header h1 {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
    }

    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .comment-header {
        flex-wrap: nowrap;
    }

    .offer-img {
        max-width: 250px;
    }

    .special-offer {
        padding: 14px;
    }

    .special-offer p {
        font-size: 1rem;
    }

    .price-label {
        font-size: 0.85rem;
    }

    .price-old .price-value {
        font-size: 1.25rem;
    }

    .price-new .price-value {
        font-size: 1.75rem;
    }

    .special-offer .cta-btn {
        font-size: 1rem;
        padding: 14px 28px;
        width: auto;
        max-width: none;
    }

    .footer-content {
        padding: 50px 16px 24px;
    }

    .anvisa-logo {
        max-width: 140px;
    }

    .footer-nav {
        font-size: 0.95rem;
    }
}

/* Responsividade - Desktop */
@media (min-width: 1024px) {
    .header-top {
        padding: 40px 16px;
    }

    .logo-title {
        font-size: 3.5rem;
    }

    .logo-subtitle {
        font-size: 1.125rem;
    }

    .header-nav {
        font-size: 1rem;
    }

    .advertorial {
        padding: 32px;
    }

    .article-header h1 {
        font-size: 2.5rem;
    }

    .cta-btn {
        font-size: 1.25rem;
        padding: 18px 36px;
    }

    .cta-btn.large {
        font-size: 1.5rem;
        padding: 24px 48px;
    }

    .footer-content {
        padding: 60px 16px 30px;
    }

    .anvisa-logo {
        max-width: 160px;
    }

    .footer-nav {
        font-size: 1rem;
    }

    .offer-img {
        max-width: 300px;
    }

    .special-offer {
        padding: 16px;
    }

    .special-offer p {
        font-size: 1.05rem;
    }

    .price-label {
        font-size: 0.9rem;
    }

    .price-old .price-value {
        font-size: 1.4rem;
    }

    .price-new .price-value {
        font-size: 2rem;
    }
}

