/* ========================================
   PÁGINA DE ARTIGO - ESTILOS ESPECÍFICOS
   ======================================== */

/* Breadcrumb */
.breadcrumb-section {
    padding: 120px 0 30px;
    background: var(--neutral-light);
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: #718096;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #CBD5E0;
}

/* ========================================
   ARTIGO - LAYOUT
   ======================================== */
.article-page {
    padding: 2rem 0 4rem;
    background: var(--white);
}

/* ========================================
   CABEÇALHO DO ARTIGO
   ======================================== */
.article-header {
    margin-bottom: 3rem;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-main-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.article-meta-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E2E8F0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #4A5568;
    font-size: 0.95rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
}

.meta-item strong {
    display: block;
    color: var(--primary-color);
}

.meta-item .text-muted {
    font-size: 0.85rem;
}

.meta-divider {
    width: 1px;
    height: 30px;
    background: #E2E8F0;
}

/* Compartilhamento Social */
.social-share {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    background: var(--white);
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: var(--white);
}

.share-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: var(--white);
}

.share-linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: var(--white);
}

.share-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.share-copy:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

/* ========================================
   IMAGEM DESTACADA
   ======================================== */
.featured-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ========================================
   CONTEÚDO DO ARTIGO
   ======================================== */
.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--neutral-dark);
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Listas de Conteúdo */
.content-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.content-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.8;
}

.content-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Citações */
.opening-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: center;
    font-style: italic;
    margin: 3rem 0;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(246, 224, 94, 0.1) 0%, rgba(237, 137, 54, 0.05) 100%);
    border-radius: 15px;
}

.opening-quote::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.inline-quote {
    border-left: 5px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--neutral-light);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    border-radius: 0 10px 10px 0;
}

.closing-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: center;
    font-style: italic;
    margin: 3rem auto;
    padding: 2.5rem;
    max-width: 800px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2C5282 100%);
    color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.3);
}

/* Boxes de Destaque */
.highlight-box {
    background: linear-gradient(135deg, rgba(246, 224, 94, 0.15) 0%, rgba(237, 137, 54, 0.1) 100%);
    border-left: 5px solid var(--secondary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 10px;
    display: flex;
    gap: 1.5rem;
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.highlight-box p {
    margin-bottom: 0;
    line-height: 1.7;
}

.warning-box {
    background: rgba(237, 137, 54, 0.1);
    border-left: 5px solid var(--accent-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 10px;
    display: flex;
    gap: 1.5rem;
}

.warning-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.warning-box ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.warning-box li {
    margin-bottom: 0.5rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2C5282 100%);
    color: var(--white);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(26, 54, 93, 0.3);
}

.cta-box h3 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-box strong {
    color: var(--secondary-color);
}

/* Imagens no Conteúdo */
.image-content {
    margin: 3rem 0;
    text-align: center;
}

.image-content img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* Steps Numerados */
.numbered-steps {
    margin: 3rem 0;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2C5282 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.3);
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.step-content p {
    margin-bottom: 0;
    line-height: 1.7;
}

.final-paragraph {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 15px;
}

/* ========================================
   TAGS DO ARTIGO
   ======================================== */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 2px solid #E2E8F0;
    border-bottom: 2px solid #E2E8F0;
    margin: 3rem 0;
}

.article-tags i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.tag-label {
    font-weight: 600;
    color: var(--primary-color);
}

.tag-item {
    background: var(--neutral-light);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.tag-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ========================================
   COMPARTILHAR NO FINAL
   ======================================== */
.share-footer {
    background: linear-gradient(135deg, rgba(246, 224, 94, 0.1) 0%, rgba(237, 137, 54, 0.05) 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.share-footer h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.share-footer p {
    color: #4A5568;
    margin-bottom: 2rem;
}

.social-share-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn-large {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.share-btn-large i {
    font-size: 1.2rem;
}

.share-btn-large.share-facebook {
    background: #1877F2;
}

.share-btn-large.share-twitter {
    background: #1DA1F2;
}

.share-btn-large.share-linkedin {
    background: #0A66C2;
}

.share-btn-large.share-whatsapp {
    background: #25D366;
}

.share-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   AUTOR BOX
   ======================================== */
.author-box {
    background: var(--neutral-light);
    padding: 2.5rem;
    border-radius: 15px;
    display: flex;
    gap: 2rem;
    margin: 4rem 0;
    border-left: 5px solid var(--secondary-color);
}

.author-box-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-content h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.author-box-content h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.author-box-content p {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.author-social {
    display: flex;
    gap: 0.8rem;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.author-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   NAVEGAÇÃO ENTRE ARTIGOS
   ======================================== */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 4rem 0;
}

.nav-article {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.nav-article:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.2);
}

.nav-article i {
    font-size: 2rem;
    color: var(--accent-color);
}

.nav-article:hover i {
    color: var(--secondary-color);
}

.nav-article div {
    display: flex;
    flex-direction: column;
}

.nav-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #718096;
    margin-bottom: 0.5rem;
}

.nav-article:hover .nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.nav-title {
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

.nav-article:hover .nav-title {
    color: var(--white);
}

.nav-next {
    justify-content: flex-end;
    text-align: right;
}

/* ========================================
   COMENTÁRIOS
   ======================================== */
.comments-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 3px solid #E2E8F0;
}

.comments-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.comment-form {
    background: var(--neutral-light);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.comment-form h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border: 2px solid #E2E8F0;
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.comment-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.comment-header strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.comment-date {
    font-size: 0.85rem;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.comment-content p {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comment-reply-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.comment-reply-btn:hover {
    color: var(--primary-color);
    gap: 0.6rem;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.widget-title i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

/* Newsletter Sidebar */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2C5282 100%);
    color: var(--white);
    text-align: center;
}

.widget-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.newsletter-widget h4 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.newsletter-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.sidebar-newsletter-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 10px;
}

.sidebar-newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-newsletter-form .form-control:focus {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

/* Artigos Populares */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.popular-post-item:hover {
    transform: translateX(5px);
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post-content h5 {
    font-size: 0.95rem;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.popular-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #718096;
}

.popular-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Categorias */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: var(--neutral-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.category-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 1.5rem;
}

.category-count {
    background: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-list a:hover .category-count {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Frase Inspiradora */
.quote-widget {
    background: linear-gradient(135deg, rgba(246, 224, 94, 0.2) 0%, rgba(237, 137, 54, 0.1) 100%);
    position: relative;
    padding: 3rem 2rem;
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Tags Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-cloud-item {
    background: var(--neutral-light);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.tag-cloud-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 991px) {
    .article-main-title {
        font-size: 2.2rem;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .article-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .article-main-title {
        font-size: 1.8rem;
    }
    
    .article-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .meta-divider {
        display: none;
    }
    
    .social-share-large {
        flex-direction: column;
    }
    
    .share-btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .article-content h2 {
        font-size: 1.6rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .author-box-avatar {
        margin: 0 auto;
    }
    
    .comment-item {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .breadcrumb-section {
        padding: 100px 0 20px;
    }
    
    .opening-quote,
    .closing-quote {
        font-size: 1.3rem;
        padding: 1.5rem;
    }
    
    .numbered-steps {
        margin: 2rem 0;
    }
}

/* ========================================
   ESTILOS ESPECÍFICOS PARA O NOVO ARTIGO
   ======================================== */

/* Tabela de Comparação */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.comparison-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.comparison-header {
    padding: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
}

.comparison-header i {
    font-size: 2rem;
}

.comparison-header.pedir {
    background: linear-gradient(135deg, #718096 0%, #4A5568 100%);
}

.comparison-header.cocriar {
    background: linear-gradient(135deg, var(--accent-color) 0%, #DD6B20 100%);
}

.comparison-item p {
    padding: 2rem;
    line-height: 1.7;
    margin: 0;
}

/* Action Box */
.action-box {
    background: rgba(246, 224, 94, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    line-height: 1.7;
}

.action-box strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsividade para Comparação */
@media (max-width: 767px) {
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}