/*
 * Página Comenda Zuleide Vieira
 * (extraído dos templates — não misturar CSS com HTML)
 */

    /* --- SEU CSS BASE --- */
    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        font-family: var(--font-body);
        color: var(--text-dark);
        background-color: var(--white);
        line-height: 1.8;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
    }

    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Animação de Scroll (Fade In) */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* --- CSS ESPECÍFICO PARA ESTA PÁGINA --- */
    
    /* Hero Interno */
    .page-hero {
        position: relative;
        height: 350px;
        display: flex;
        align-items: center;
        background: linear-gradient(rgba(0, 34, 102, 0.85), rgba(0, 51, 153, 0.8)), url('https://images.unsplash.com/photo-1541961017774-22349e4a1262?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
        background-size: cover;
        background-position: center;
        color: var(--white);
        text-align: center;
    }

    .page-hero-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
        color: var(--accent-yellow);
    }

    /* Seção da História / Texto com Foto */
    .section-medal-history {
        padding: 100px 0;
        background: var(--white);
    }

    /* GRID MELHORADO: Imagem ocupa 4 partes, texto ocupa 6 partes. Alinhamento pelo topo */
    .medal-history-grid {
  
        gap: 80px;
        align-items: flex-start;
    }

    /* Estilos da Imagem Refinados */
    .feature-img-box {
        position: relative;
        z-index: 1;
        padding-bottom: 20px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .feature-img {
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-hover);
        width: 100%;
        height: auto;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    /* Decoração da imagem mais elegante */
    .feature-decoration {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 85%;
        height: 85%;
        background: var(--light-green);
        border: 2px solid var(--primary-green);
        border-radius: var(--radius-md);
        z-index: 0;
    }

    /* Estilos do Texto Refinados */
    .history-subtitle {
        color: var(--primary-green);
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .history-title {
        color: var(--primary-blue);
        font-size: 2.4rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .medal-history-content {
        text-align: justify;
    }

    .medal-history-content p {
        margin-bottom: 20px;
        font-size: 1.1rem;
        color: var(--text-gray);
    }

    /* Letra Capitular (Primeira letra grande) */
    .medal-history-content p:first-of-type::first-letter {
        font-family: 'Montserrat', sans-serif;
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--primary-green);
        float: left;
        margin-right: 12px;
        line-height: 0.85;
        margin-top: 6px;
    }

    /* Seção dos Agraciados */
    .section-honorees {
        padding: 80px 0 100px;
        background: var(--bg-light);
    }

    .honorees-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .honorees-header h2 {
        font-size: 2.2rem;
        color: var(--primary-blue);
        margin-bottom: 15px;
    }

    .honorees-header .line {
        width: 60px;
        height: 4px;
        background: var(--accent-yellow);
        margin: 0 auto;
        border-radius: 2px;
    }

    .honorees-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .honoree-card {
        background: var(--white);
        padding: 30px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition: all 0.3s ease;
        border-left: 4px solid var(--primary-green);
    }

    .honoree-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        border-left-color: var(--accent-yellow);
    }

    .honoree-icon {
        font-size: 2.2rem;
        color: var(--accent-yellow);
        flex-shrink: 0;
    }

    .honoree-info h4 {
        font-size: 1.15rem;
        color: var(--primary-blue);
        margin-bottom: 5px;
    }

    .honoree-role {
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        color: var(--primary-green);
        margin-bottom: 10px;
        display: block;
        letter-spacing: 0.5px;
    }

    .honoree-desc {
        font-size: 0.95rem;
        color: var(--text-gray);
        margin-bottom: 8px;
    }

    .honoree-indicador {
        font-size: 0.85rem;
        font-style: italic;
        color: #888;
        border-top: 1px dashed #eaeaea;
        padding-top: 10px;
        margin-top: 12px;
    }

    /* Responsividade */
    @media (max-width: 992px) {
        .honorees-grid {
            grid-template-columns: 1fr;
        }
        
        .medal-history-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .feature-img-box {
            max-width: 500px;
            margin: 0 auto;
            padding: 0;
        }

        .feature-decoration {
            bottom: -15px;
            right: -15px;
        }
    }

    @media (max-width: 768px) {
        .page-hero h1 {
            font-size: 2.2rem;
        }
        .honoree-card {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .honoree-icon {
            margin-bottom: 10px;
        }
        .history-title {
            font-size: 2rem;
            text-align: center;
        }
        .history-subtitle {
            text-align: center;
        }
    }

	/* Estilo para a Imagem da Medalha Centralizada */
.medal-display {
    text-align: center;
    margin-bottom: 40px;
}

.medal-visual {
    width: 270px;
    border-radius: 30px;
    box-shadow: 10px 10px 25px #bbbbbb;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}

.medal-visual:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Ajuste na seção de agraciados para comportar o novo elemento */
.section-honorees {
    padding: 60px 0 100px;
}
	
