@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    font-family: "Poppins", sans-serif;
    background-color: #e5e5e5;
}

header.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-glass {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2) !important;
}

.logo-iptu {
    text-align: center;
    transition: all 0.3s ease;
}

/* Classe que oculta a logo */
.logo-iptu.hide {
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.spacer {
    height: 200px;
    /* Ajuste conforme a altura da logo + navbar */
}

.logo-iptu {
    width: 100%;
    height: 155px;
    background-color: #ffbe0b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M-10,110 Q25,60 60,110 T130,110' fill='none' stroke='%23003566B3' stroke-width='3' transform='rotate(-45, 50, 50)'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: repeat;
    position: relative;
    overflow: hidden;
}



.menu-color {
    background-color: #003566;

}

.menu-color a {
    color: white !important;
    font-size: 20px;
    font-weight: 800;
}

.menu-color a:hover {
    background: gold;
    border-radius: 20px;
    color: #003566 !important;
}

.texto-home{
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 400;
}

.texto-home strong{
    color: #002244;
    font-style: italic;
}
.texto-home-2{
     font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 400;
}
.texto-home-2 strong{
    color: white;
    font-style: italic;
    background-color: #db7b0d;
    border-radius: 20px;
}
.legislacao {
    background-color: #1eb2ba;
}

.legislacao h3 {
    font-weight: 800;
    font-size: 50px;
    margin-top: 3%;
    color: #e5e5e5;
}

.title-legis {
    margin-top: 5%;
}

.card-iptu {
    background-color: #003566;
    color: white;
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-iptu:hover {
    transform: scale(1.03);
}

.card-iptu .card-header {
    background-color: #ffbe0b;
    color: #003566;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card-iptu .card-body {
    padding: 1.5rem;
}

.btn-custom {
    background-color: #ffbe0b;
    color: #003566;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 20px;
    border: none;
}

.btn-custom:hover {
    background-color: #ffd43b;
    color: #002244;
}

.icon {
    font-size: 3rem;
    color: #ffbe0b;
}

.title-galeria {
    margin-top: 5%;
}

.galeria {
    background: linear-gradient(34deg, rgba(2, 191, 191, 1) 27%, rgba(255, 153, 51, 1) 87%);

}

.galeria h3 {
    font-weight: 800;
    font-size: 50px;
    margin-top: 3%;
    color: #003566;
}

.gallery-card {
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.gallery-card img {
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.footer-iptu {
    background-color: #003566 !important;
    color: #e5e5e5;
}

.footer-iptu h4 {
    font-weight: 600;
    font-size: 25px;
}

.footer-iptu a {
    color: #e5e5e5;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
}