/* === ARTICLE SPECIFIC STYLES === */

.article-hero {
    background: var(--gradient-dark);
    padding: 150px 0 80px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb span {
    color: var(--white);
    font-weight: 600;
}

.article-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--primary);
    font-size: 1.1rem;
}

.article-container {
    padding: 80px 0;
    background: var(--white);
}

.article-content {
    max-width: 850px;
    margin: 0 auto;
}

.content-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    position: relative;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 2rem 0 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-section p strong {
    color: var(--primary);
    font-weight: 700;
}

.content-section ul {
    margin: 1.5rem 0 2rem 2rem;
}

.content-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 0.5rem;
}

.content-section ul li::marker {
    color: var(--primary);
    font-size: 1.2rem;
}

.content-section ul li strong {
    color: var(--secondary);
    font-weight: 700;
}

.cta-box-article {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    margin-bottom: 3rem;
}

.cta-box-article h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-box-article h3 i {
    font-size: 2.5rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-15deg);
    }

    20%,
    40% {
        transform: rotate(15deg);
    }
}

.cta-box-article p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1FA855;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.related-neighborhoods {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin-top: 3rem;
}

.related-neighborhoods h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.related-card i {
    font-size: 2rem;
    color: var(--primary);
}

.related-card span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .article-hero {
        padding: 120px 0 60px;
    }

    .article-hero h1 {
        font-size: 2rem;
    }

    .article-meta {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section p,
    .content-section ul li {
        font-size: 1rem;
        text-align: left;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}