/* Hero Section Transparência */
.hero-transparency {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--blue-900) 0%, #1a2a4a 100%);
    text-align: center;
}

.hero-transparency .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 3rem;
}

.hero-transparency h1 {
    font-size: 4rem;
    text-shadow: 1px 5px 10px rgba(0, 0, 0, 0.383);
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-transparency p {
    font-size: 1.8rem;
    line-height: 1.6;
    text-shadow: 1px 5px 10px rgba(0, 0, 0, 0.383);
    color: var(--white);
    max-width: 80rem;
}

/* Reports Section */
.reports-section {
    padding: 5rem 2rem;
    background-color: var(--background);
}

.reports-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reports-container h2 {
    font-size: 3rem;
    color: var(--blue-900);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reports-description {
    font-size: 1.6rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.reports-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.report-item {
    background-color: var(--white);
    border-radius: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.report-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.report-link {
    display: flex;
    align-items: center;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.report-link:hover {
    background-color: rgba(167, 139, 250, 0.05);
}

.report-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--purple-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    color: var(--white);
}

.report-info {
    flex: 1;
}

.report-info h3 {
    font-size: 1.8rem;
    color: var(--blue-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.report-type {
    display: inline-block;
    background-color: var(--gray-300);
    color: var(--gray-700);
    padding: 0.3rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-arrow {
    flex-shrink: 0;
    margin-left: 2rem;
    color: var(--purple-300);
    transition: transform 0.3s ease;
}

.report-link:hover .report-arrow {
    transform: translateX(5px);
}

/* Footer Styles */
.footer {
    background-color: var(--blue-900);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--purple-300);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--gray-300);
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--purple-300);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-300);
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-transparency h1 {
        font-size: 2.5rem;
    }

    .hero-transparency p {
        font-size: 1.4rem;
    }

    .hero-transparency .container {
        padding: 0 1.5rem;
    }

    .transparency-content {
        padding: 3rem 1.5rem;
    }

    .transparency-image {
        border-radius: 0.8rem;
    }

    .reports-section {
        padding: 3rem 1.5rem;
    }

    .reports-container h2 {
        font-size: 2.5rem;
    }

    .reports-description {
        font-size: 1.4rem;
        margin-bottom: 3rem;
    }

    .report-link {
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .report-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .report-arrow {
        margin-left: 0;
        margin-top: 1rem;
        align-self: flex-end;
    }

    .report-info h3 {
        font-size: 1.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-transparency h1 {
        font-size: 2rem;
    }

    .hero-transparency p {
        font-size: 1.2rem;
    }

    .transparency-content {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .reports-section {
        padding: 2rem 1rem;
    }

    .reports-container h2 {
        font-size: 2rem;
    }

    .reports-description {
        font-size: 1.2rem;
    }

    .report-link {
        padding: 1.5rem;
    }

    .report-info h3 {
        font-size: 1.4rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transparency-image {
    animation: fadeInUp 0.8s ease-out;
}