/* ============================================
   FUNDO PROFISSIONAL ESCURO SUAVE
   ============================================ */
body {
    background: linear-gradient(145deg, #dfe6ed 0%, #c8d3e0 50%, #dce3ea 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

/* ============================================
   FORMA GEOMÉTRICA DECORATIVA (CANTO SUPERIOR DIREITO)
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   CARROSSEL (BORDAS ARREDONDADAS E SOMBRA)
   ============================================ */
#heroCarousel {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* ============================================
   CARDS COM EFEITO DE VIDRO (GLASSMORPHISM)
   ============================================ */
.card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* ============================================
   CONTEÚDO DE POSTS
   ============================================ */
.conteudo-post {
    font-size: 1.1rem;
    line-height: 1.8;
}
.conteudo-post h2, .conteudo-post h3, .conteudo-post h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.conteudo-post p {
    margin-bottom: 1rem;
}
.conteudo-post ul, .conteudo-post ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}
.conteudo-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* ============================================
   FOOTER PROFISSIONAL (mantido igual)
   ============================================ */
.site-footer {
    background: #1a1f2e;
    color: #cbd5e1;
    font-size: 0.95rem;
}
.footer-top {
    padding: 4rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h4 {
    font-weight: 700;
    letter-spacing: -0.5px;
}
.footer-description {
    color: #94a3b8;
    line-height: 1.7;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}
.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
}
.footer-contact i {
    width: 20px;
    color: #3b82f6;
    font-size: 1.1rem;
}
.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
}
.footer-contact a:hover {
    color: #fff;
}
.footer-bottom {
    padding: 1.25rem 0;
    font-size: 0.85rem;
    color: #64748b;
    background: rgba(0,0,0,0.15);
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 31, 46, 0.95);
    color: #cbd5e1;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}