/* ===================================================
   Gestão Territorial – Estilo exclusivo da página
   Versão limpa, moderna e minimal
=================================================== */

/* ---------- Estrutura Base ---------- */

/* ===== Gestão Territorial ===== */

.gt-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
    padding: 0 20px;
}

.gt-hero {
    padding: 60px 0 40px 0;
}

.gt-hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
	color: #00527d;
}

.gt-intro {
    font-size: 17px;
    color: #555;
    max-width: 720px;
    line-height: 1.6;
}

/* Áreas */

.gt-areas {
    padding: 40px 0 80px 0;
}

.gt-areas .gt-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.gt-card {
    flex: 1 1 300px;
    background: #F7F9FA;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.gt-card h2 {
    font-size: 20px;
    position: relative;
    padding-bottom: 8px;
}

.gt-card h2:after {
	content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
	border-radius:2px;
}

.gt-card.bupi h2:after{
    background-color:#0e896b;
}

.gt-card.sig h2:after{
    background-color:#2f3439;
}

.gt-card.urbanismo h2:after{
    background-color:#0069A1;
}

.gt-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0069A1;
    margin-bottom: 14px;
}

.gt-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

/* Botões */

.gt-btn {
    display: inline-block;
    padding: 10px 18px;
    color: #ffffff !important;
	font-weight: 600;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.gt-btn:hover {
    color: #ffffff !important;
	transform: translateY(-1px);
}

/* BUPi */
.gt-btn-bupi {
    background-color: #0e896b;
	color: #ffffff !important;
	display: inline-block;
    padding: 10px 18px;
	font-weight: 600;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.gt-btn-bupi:hover {
    background-color: #0b6f58;
	color: #ffffff !important;
}

/* Urbanismo */
.gt-btn-urbanismo {
    background-color: #0069A1;
	color: #ffffff !important;
	 display: inline-block;
    padding: 10px 18px;
	font-weight: 600;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.gt-btn-urbanismo:hover {
    background-color: #00527d;
	color: #ffffff !important;
}

/* SIG */
.gt-btn-sig {
    background-color: #4A4F55;
	color: #ffffff !important;
	 display: inline-block;
    padding: 10px 18px;
	font-weight: 600;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.gt-btn-sig:hover {
    background-color: #2f3439;
	color: #ffffff !important;
}

.gt-paisagem{
    height:100px;
    margin-top:-8px;
    position:relative;
    overflow:hidden;
}

.gt-paisagem::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url("images/paisagem.jpg");
    background-size:cover;
    background-position:center 20%;
    opacity:0.5;
}

.gt-paisagem::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,1)
    );
}

/* atendimento */

.gt-cards{
display:flex;
flex-wrap:wrap;
gap:30px;
padding: 40px 0 80px 0;
}

.gt-list{
list-style:none;
padding:0;
margin-top:15px;
}

.gt-list li{
padding:4px 0;
}

.sig-mapa{
    position:relative;
    border-radius:10px;
    overflow:hidden;
}
.sig-mapa iframe{
width:100%;
height:360px;
border:0;
border-radius:8px;
}

/* pin sobre o mapa */
.sig-pin{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:34px;
    height:34px;
    background:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

.sig-pin:before{
    content:"📍";
    font-size:16px;
}


.sig-equip-bloco{
    padding: 30px 25px;
    background-color:#F7F9FA;
    border-bottom:1px solid #e6e6e6;
    margin:40px 0;
	transition: background-color 0.2s ease, border-left-width 0.2s ease;
}
.sig-equip-conteudo h3{
    margin-top:0;
}


/* Responsivo */

@media (max-width: 768px) {
    .gt-areas .gt-container {
        flex-direction: column;
    }
}