@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

html, body {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
}

a {
    text-decoration: none;
    color: black;
}

/* ===== HEADER ===== */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.tel {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
}

.tel p {
    margin: 0;
    font-size: 16px;
    border-right: 1px solid rgb(245, 245, 245);
    border-left: 1px solid rgb(245, 245, 245);
    padding: 0 10px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    flex-wrap: wrap;
    padding: 0 20px;
}

nav .logo {
    margin-right: auto;
}

nav .logo a {
    display: inline-block;
}

nav .logo img {
    width: 90px;
    height: auto;
    pointer-events: auto;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    align-items: center;
    margin: 0;
}

nav li {
    position: relative;
    font-size: 15px;
    padding: 0 15px;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav li::after {
    content: '';
    transform: scaleX(0);
}

nav li:hover::after {
    transform: scaleX(1);
}

/* Submenu */
nav .submenu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 180px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

nav .submenu li {
    padding: 10px 20px;
    white-space: nowrap;
}

nav .submenu li:hover {
    transform: scale(1.05);
    z-index: 10;
}

nav .submenu a {
    color: black;
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    text-decoration: none;
}

nav li:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== SLIDE PRINCIPAL ===== */
.slide {
    position: relative;
    margin: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.slide img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    filter: blur(5px) brightness(0.3);
    border-radius: 15px;
}

.slide .text {
    position: absolute;
    top: 20%;
    left: 5%;
    right: 5%;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.slide .text h1 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.slide .text h2 {
    font-size: 1.5rem;
    margin: 20px 0 0 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
}

.about .img-conteiner {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about .img-conteiner img {
    height: 130px;
    width: 230px;
    object-fit: contain;
}

.about .txt-conteiner {
    flex: 1;
    min-width: 0;
}

.about nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    height: auto;
}

.about .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.about .menu-item {
    position: relative;
    font-size: 18px;
    padding: 0 20px 25px 20px;
    margin: 0;
    color: #000;
    cursor: pointer;
    text-align: center;
}

.about .menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #3e83c0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about .menu-item:hover::after {
    transform: scaleX(1);
}

.about .menu-item.active::after {
    transform: scaleX(1);
}

.about .texto-info {
    margin-top: 20px;
    padding: 20px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border-left: 4px solid #3e83c0;
    animation: fadeIn 0.3s ease-in-out;
    line-height: 1.6;
}

/* ===== ÁREAS DE ATUAÇÃO ===== */
.h1-conteiner {
    display: flex;
    background-color: #3e83c0;
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 80px 0 20px 0;
}

.h1-conteiner h1 {
    font-size: 2.5rem;
    margin: 0;
}

.areas-atuacao {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 400px;
    gap: 0;
}

.area {
    flex: 1;
    min-width: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 300px;
}

.area:hover {
    transform: scale(1.05);
    z-index: 10;
}

.area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 0.3s ease;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.area:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.area h2,
.area a {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.area:hover h2,
.area:hover a {
    opacity: 0;
}

.area a.area-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-indent: -9999px;
}

.btn {
    background-color: rgb(223, 83, 101);
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.area .btn:hover {
    background-color: #3e83c0;
    transform: scale(1.05);
}

/* ===== DOE SECTION ===== */
.doe-section {
    margin-top: 150px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px 20px;
    align-items: center;
}

.doe-section .text {
    flex: 1;
    min-width: 250px;
}

.doe-section .text p {
    font-size: 24px;
    line-height: 1.6;
    margin: 15px 0;
}

.doe-section .text .btn {
    margin-top: 20px;
}

.doe-section .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
}

.doe-section .image img {
    border-radius: 50%;
    width: 100%;
    max-width: 400px;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.site-footer {
    margin-top: 100px;
    background-color: #333333;
    color: white;
    padding: 40px 20px 10px;
    font-family: sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3e83c0;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 10px;
    background-color: #333333;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    display: block;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #3e83c0;
}

/* ===== OUTRAS PÁGINAS ===== */
#pg-slide {
    background-color: #3e83c0;
    height: 150px;
    border-bottom: 4px solid #d2d2d2;
    text-align: center;
    color: white;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 35px;
    flex-direction: column;
}

#pg-slide a {
    color: rgb(0, 0, 0);
    padding: 0 10px;
}

#content-conteiner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    gap: 20px;
    padding: 20px;
}

#pg-text {
    padding: 20px;
    font-size: 18px;
    flex: 1;
    min-width: 250px;
}

.missao-visao-valores {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #f8f8f8;
    flex-wrap: wrap;
}

.box {
    flex: 1;
    min-width: 250px;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    background-image: url(assets/imgs/quebracabeca.jpeg);
    font-size: 18px;
}

.box p {
    color: white;
    line-height: 1.6;
}

.box h2 {
    color: white;
}

.destaque {
    background-color: #f1ecea;
}

.icon {
    font-size: 32px;
    margin-bottom: 15px;
}

#presidente-conteiner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    font-size: 18px;
    padding: 20px;
    text-align: center;
}

#presidente-conteiner p {
    max-width: 700px;
    line-height: 1.6;
}

#presidente-conteiner img {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
    border-radius: 10px;
}

#historia-content-conteiner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    gap: 20px;
    padding: 20px;
}

#historia-pg-text {
    padding: 20px;
    font-size: 18px;
    flex: 1;
    min-width: 250px;
    line-height: 1.6;
}

#historia-pg-img {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#historia-pg-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

#slide-conteiner {
    background-color: #3e83c0;
    min-height: 400px;
    border-bottom: 4px solid #d2d2d2;
    text-align: center;
    color: white;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 35px;
    flex-direction: row;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

#slide-conteiner a {
    color: rgb(0, 0, 0);
    padding: 0 10px;
}

#slide-conteiner-text {
    flex: 1;
    min-width: 250px;
}

#slide-conteiner-text h1 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
}

#slide-conteiner-text p {
    font-size: 18px;
    line-height: 1.6;
}

.galeria {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    padding: 0 20px;
}

.galeria img {
    height: 280px;
    width: 360px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ===== FORMULÁRIO DE CONTATO ===== */
.form-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    padding: 20px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info p {
    margin: 5px 0;
    line-height: 1.6;
}

.contact-info i {
    margin-right: 8px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #3e83c0;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #2f6ba8;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLetter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classe para elementos que aparecem ao rolar */
.fade-in-element {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-element.visible {
    opacity: 1;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    nav {
        height: auto;
        padding: 10px;
    }

    nav .logo {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }

    nav .logo img {
        width: 100px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav li {
        padding: 0 10px;
        font-size: 14px;
    }

    .slide .text {
        top: 30%;
        left: 10%;
        right: 10%;
    }

    .slide .text h1 {
        font-size: 2rem;
    }

    .slide .text h2 {
        font-size: 1.2rem;
    }

    .about {
        flex-direction: column;
        align-items: center;
    }

    .about .img-conteiner {
        flex: 0 0 100%;
    }

    .about .txt-conteiner {
        flex: 1;
        width: 100%;
    }

    .h1-conteiner h1 {
        font-size: 2rem;
    }

    .areas-atuacao {
        flex-direction: row;
        min-height: auto;
    }

    .area {
        min-width: 50%;
        min-height: 250px;
    }

    .doe-section {
        flex-direction: column;
        margin-top: 50px;
    }

    .doe-section .text p {
        font-size: 20px;
    }

    .doe-section .image img {
        max-width: 300px;
    }

    #historia-content-conteiner {
        flex-direction: column;
    }

    #slide-conteiner {
        flex-direction: column;
        min-height: auto;
    }

    #slide-conteiner-text h1 {
        font-size: 2rem;
    }

    .galeria {
        flex-direction: column;
        align-items: center;
    }

    .galeria img {
        width: 100%;
        max-width: 360px;
    }
}

/* Celulares (até 768px) */
@media (max-width: 768px) {
    .tel {
        padding: 8px 10px;
        justify-content: center;
        font-size: 14px;
    }

    .tel p {
        font-size: 14px;
        padding: 0 5px;
    }

    nav {
        height: auto;
        padding: 10px;
        flex-direction: column;
    }

    nav .logo {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }

    nav .logo img {
        width: 80px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    nav li {
        padding: 8px 0;
        font-size: 13px;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: center;
    }

    nav .submenu {
        position: static;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    nav li:hover .submenu {
        opacity: 1;
        max-height: 500px;
        position: static;
        transform: none;
    }

    .slide {
        margin: 10px;
        border-radius: 10px;
    }

    .slide img {
        height: 300px;
        border-radius: 10px;
    }

    .slide .text {
        top: 40%;
        left: 5%;
        right: 5%;
    }

    .slide .text h1 {
        font-size: 1.5rem;
        margin: 0 0 10px 0;
    }

    .slide .text h2 {
        font-size: 1rem;
    }

    .about {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        padding: 10px;
    }

    .about .img-conteiner {
        flex: 0 0 100%;
    }

    .about .img-conteiner img {
        height: 100px;
        width: 180px;
    }

    .about .txt-conteiner {
        flex: 1;
        width: 100%;
    }

    .about .menu-item {
        font-size: 14px;
        padding: 0 10px 15px 10px;
    }

    .about .texto-info {
        font-size: 14px;
        padding: 15px;
    }

    .h1-conteiner {
        height: 80px;
        margin: 40px 0 10px 0;
    }

    .h1-conteiner h1 {
        font-size: 1.5rem;
    }

    .areas-atuacao {
        flex-direction: column;
        min-height: auto;
    }

    .area {
        min-width: 100%;
        min-height: 200px;
    }

    .area h2 {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .doe-section {
        margin-top: 50px;
        padding: 20px 10px;
        gap: 20px;
    }

    .doe-section .text {
        flex: 1;
        min-width: 100%;
    }

    .doe-section .text p {
        font-size: 16px;
    }

    .doe-section .image {
        flex: 1;
        min-width: 100%;
    }

    .doe-section .image img {
        max-width: 250px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
        min-width: 100%;
    }

    #content-conteiner {
        flex-direction: column;
        padding: 10px;
    }

    #pg-text {
        padding: 10px;
        font-size: 16px;
        flex: 1;
        min-width: 100%;
    }

    .missao-visao-valores {
        flex-direction: column;
        padding: 20px 10px;
        gap: 15px;
    }

    .box {
        min-width: 100%;
        padding: 20px 15px;
        font-size: 16px;
    }

    #presidente-conteiner {
        margin-top: 30px;
        font-size: 16px;
        padding: 10px;
    }

    #presidente-conteiner p {
        max-width: 100%;
    }

    #presidente-conteiner img {
        max-width: 300px;
    }

    #historia-content-conteiner {
        flex-direction: column;
        padding: 10px;
    }

    #historia-pg-text {
        padding: 10px;
        font-size: 16px;
        flex: 1;
        min-width: 100%;
    }

    #historia-pg-img {
        flex: 1;
        min-width: 100%;
    }

    #historia-pg-img img {
        max-width: 300px;
    }

    #slide-conteiner {
        flex-direction: column;
        min-height: auto;
        margin-top: 20px;
        padding: 20px 10px;
        gap: 15px;
    }

    #slide-conteiner-text {
        flex: 1;
        min-width: 100%;
    }

    #slide-conteiner-text h1 {
        font-size: 1.5rem;
    }

    #slide-conteiner-text p {
        font-size: 16px;
    }

    .galeria {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
        gap: 15px;
    }

    .galeria img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .form-container {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    .contact-info {
        min-width: 100%;
    }

    .contact-form {
        min-width: 100%;
    }

    .contact-info h2 {
        font-size: 22px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-form label {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
    }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
    .tel p {
        font-size: 12px;
    }

    nav li {
        padding: 6px 0;
        font-size: 12px;
    }

    nav .logo img {
        width: 60px;
    }

    .slide img {
        height: 200px;
    }

    .slide .text h1 {
        font-size: 1.2rem;
    }

    .slide .text h2 {
        font-size: 0.9rem;
    }

    .about .menu-item {
        font-size: 12px;
        padding: 0 8px 12px 8px;
    }

    .h1-conteiner h1 {
        font-size: 1.2rem;
    }

    .area {
        min-height: 150px;
    }

    .area h2 {
        font-size: 16px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .doe-section .text p {
        font-size: 14px;
    }

    .doe-section .image img {
        max-width: 200px;
    }

    #slide-conteiner-text h1 {
        font-size: 1.2rem;
    }

    #slide-conteiner-text p {
        font-size: 14px;
    }

    .contact-info h2 {
        font-size: 18px;
    }
}

/* ===== SEÇÃO TRANSPARÊNCIA ===== */
.transparency-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transparency-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.transparency-card .icon-box {
    width: 70px;
    height: 70px;
    background: #3e83c0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 30px;
}

.transparency-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.transparency-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.transparency-card .btn-download {
    background-color: #3e83c0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.transparency-card .btn-download:hover {
    background-color: #2f6ba8;
}

/* Responsividade para Transparência */
@media (max-width: 768px) {
    .transparency-grid {
        grid-template-columns: 1fr;
    }
    
    .transparency-section {
        padding: 40px 15px;
    }
}


/* ===== SEÇÃO DEMONSTRATIVOS ===== */
.demonstratives-section {
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.demonstratives-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
    letter-spacing: 0.03em;
}

.demonstratives-section > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.demonstratives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.demonstrative-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demonstrative-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.demonstrative-card h3 {
    font-size: 28px;
    font-weight: bold;
    color: #3e83c0;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.demonstrative-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.demonstrative-card .btn-download {
    background-color: #3e83c0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

.demonstrative-card .btn-download:hover {
    background-color: #2f6ba8;
}

/* ===== PÁGINA DE CONTATO ===== */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 0.03em;
}

.contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h3 {
    font-size: 18px;
    color: #3e83c0;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0.02em;
}

.contact-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-item a {
    color: #3e83c0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2f6ba8;
}

.contact-hours {
    background: linear-gradient(135deg, #3e83c0 0%, #2f6ba8 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-hours h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 0.03em;
}

.hours-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hours-box p {
    font-size: 16px;
    margin: 8px 0;
    line-height: 1.6;
}

.hours-box p strong {
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

/* Responsividade para Demonstrativos */
@media (max-width: 768px) {
    .demonstratives-grid {
        grid-template-columns: 1fr;
    }
    
    .demonstratives-section {
        margin-top: 40px;
        padding: 30px 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info-box,
    .contact-hours {
        padding: 25px;
    }

    .contact-info-box h2,
    .contact-hours h2 {
        font-size: 1.5rem;
    }

    .contact-item h3 {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 14px;
    }
}
