/* Portal de Transparencia - estilos frontend */

.pt-portal {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
    color: #1a1a1a;
}

.pt-hero {
    background-color: #b8e3dc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 40px;
    border-radius: 4px;
    margin-bottom: 30px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pt-hero-title {
    font-size: 3em;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    padding-right: 5%;
}

.pt-content {
    padding: 20px 10px;
}

.pt-section-heading {
    font-size: 1.4em;
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0 40px;
    letter-spacing: 0.5px;
}

.pt-subsection {
    font-size: 0.95em;
    font-weight: 700;
    color: #4a4a8f;
    letter-spacing: 1px;
    margin: 45px 0 30px;
    text-transform: uppercase;
}

.pt-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 60px;
    margin-bottom: 20px;
}

.pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    border: 2px solid;
    background: transparent;
    font-weight: 700;
    font-size: 0.9em;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    line-height: 1.2;
    box-shadow: none;
    max-width: 100%;
}

.pt-btn-red {
    color: #d63e2b;
    border-color: #d63e2b;
}
.pt-btn-red:hover,
.pt-btn-red:focus {
    background: #d63e2b;
    color: #fff !important;
}

.pt-btn-teal {
    color: #2a8b9c;
    border-color: #2a8b9c;
}
.pt-btn-teal:hover,
.pt-btn-teal:focus {
    background: #2a8b9c;
    color: #fff !important;
}

.pt-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.pt-footer-text {
    margin-bottom: 25px;
    line-height: 1.6;
}

.pt-footer-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 700px) {
    .pt-buttons-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pt-hero {
        padding: 40px 20px;
        justify-content: center;
    }
    .pt-hero-title {
        font-size: 1.8em;
        padding-right: 0;
        text-align: center;
    }
}
