/* =========================================
   ESTRUTURA GERAL E ANIMAÇÕES (Padronizado)
   ========================================= */

/* --- Container Principal da Seção --- */
.animated-text-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

/* --- Títulos Animados --- */
.main-title-animated {
    font-family: 'Inter', sans-serif;
    color: rgba(12, 4, 7, 0.4); /* Padrão "Marca d'água" */
    font-size: 3.5rem;          /* Tamanho ajustado */
    line-height: 1.1;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 16px;
}

.subtitle-animated {
    font-family: 'Inter', sans-serif;
    color: #0c0407;            /* Preto Padrão */
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: none;
    margin: 0;
}

/* --- Galeria / Blog Thumbs (Usado em Galeria 360 e outros) --- */
.blog-thumb-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}


/* --- Título Sobreposto (Overlay) --- */
.blog-title {
    font-family: 'Inter', sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    padding: 20px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); /* Gradiente para leitura */
    
    /* Animação sutil */
    transform: translateY(0); 
    transition: all 0.3s ease;
}

/* --- Conteúdo de Texto (se houver abaixo da imagem) --- */
.blog-content {
    padding: 25px;
    text-align: left;
}

.blog-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;    /* Espaçamento Padrão */
    color: #4c4c4c;      /* Cinza Padrão */
    margin-top: 0;
    margin-bottom: 0;
    text-align: justify; /* Justificado Padrão */
}

/* Responsividade */
@media (max-width: 767px) {
    .main-title-animated {
        font-size: 2.5rem;
    }
    .subtitle-animated {
        font-size: 1.25rem;
    }
    .blog-thumb {
        height: 200px;
    }
}


---------------------
/* =========================================
   ESTRUTURA - Animações e Cards Especiais
   ========================================= */

/* Animação de Entrada */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-entry {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- Cards de Blog / Galeria (Padronizados) --- */
.blog-thumb-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-thumb-wrap:hover {
    transform: translateY(-5px);
}

.blog-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Seção de Texto Animado */
.animated-text-section {
    padding: 0px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-title-animated {
    font-family: 'Inter', sans-serif;
    color: #9e9b9c; 
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    padding: 5px;
     padding-top: 0px;
}

@media (max-width: 767px) {
    .main-title-animated { font-size: 2.2rem; }
}

.iintro-text p {
    /* font-size: 1rem; */
    color: var(--light-text);
    line-height: 1.5;
    margin-bottom: 2rem;
}
