/*!
Theme Name: NEPPS Theme
Theme URI: https://
Author: PMI
Author URI: https://
Description: Tema do NEPPS
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: template-empty-wordpress
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/


body {
    background-color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.btn-transparente{
    background: transparent!important;
    border: 2px solid #0a6ea8;
    color: #0a6ea8!important;
    font-weight: 700;
    width: auto;
    padding: 10px 60px;
    border-radius: 10px;
}

.btn-transparente:hover{
    border: 2px solid #0a6ea8;
}

.btn-laranja{
    background: #df8637!important;
    color: #FFF!important;
    font-weight: 700;
    width: auto;
    padding: 10px 60px;
    border-radius: 10px;
}

/*NAVBAR*/

.navbar-prefeitura {
    border-top: 5px solid #df8637;
    background-color: #00659e;
    /* azul institucional */
    height: 130px;
}

.navbar-prefeitura .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-prefeitura img {
    max-height: 55px;
    width: auto;
}


/*HERO*/

.hero {
    background-color: #00659e;
    width: 100%;
    height: 550px;
}

.hero h1{
    font-size: 66px;
    font-weight: 700;
    color: #FFF;
}

.hero p{
    color: #cdedff;
}


/*TITULO*/

.section-titulo {
    background-color: #ffffff;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #0077b6;
    margin-bottom: 6px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #00659e;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 20px;
    color: #006494;
}

/*AREA_SERVIÇOS*/

.servicos .service-card {
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    background-color: #d8f0ff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.servicos .service-card.dark {
    background-color: #00659e;
    color: #ffffff;
}

.servicos .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.servicos .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.servicos .service-card.dark .icon-box {
    background-color: rgba(255, 255, 255, 0.15);
}

.servicos .icon-box i {
    font-size: 24px;
    color: #0077b6;
}

.servicos .service-card.dark .icon-box i {
    color: #ffffff;
}

.servicos .service-card.dark .service-title{
    color: #FFF;
}

.servicos .service-card.dark .service-text {
    color: #C0E8FF;
}

.servicos .service-card .service-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: #005D92;
}

.servicos .service-card .service-text {
    font-size: 17px;
    color: #005D92;
    line-height: 1.5;
}


/**CTR-BANNER*/

.ctr-banner {
    background-color: #eee;
    width: 100%;
    height: 450px;
    border-radius: 16px;
}


/*SOBRE*/

.image-box,
.text-box {
    border-radius: 16px;
    overflow: hidden;
}

/* Imagem ocupa toda a coluna */
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-box {
    background-color: #d8f0ff;
    padding: 48px;
}

.sobre .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #005D92;
    margin-bottom: 16px;
}

.sobre .section-text {
    font-size: 16px;
    line-height: 1.7;
    color: #005D92;
}



/*GALERIA DE IMAGEM*/

.square-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Mantém quadrado */
    overflow: hidden;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.square-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.square-gallery:hover img {
    transform: scale(1.08);
}


/*CONTATO*/

.contact-section {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Lado Direito - Informações */
.info-panel {
    background-color: #ebf8ff;
    padding: 60px;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-box {
    background-color: #c0e8ff;
    /* Azul claro do ícone */
    color: #005d92;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 20px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h5 {
    color: #4b7cc0;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-content p {
    color: #094c70;
    margin-bottom: 0;
    line-height: 1.6;
}

.btn-portal {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-portal:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Ajuste do Mapa */
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

@media (max-width: 768px) {
    .info-panel {
        padding: 25px;
    }
}


/*SINGLE*/

.single .link-voltar{
    color: #006494;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
}

.single h1{
    color: #075885;
    font-size: 46px;
    line-height: 48px;
    font-weight: 600;
}

.single .content p{
    color: #00475e;
}

.single h2{
   color: #006494;
   font-weight: 600;
   font-size: 30px;
   line-height: 34px;
   padding-top: 20px;
   padding-bottom: 20px;
   max-width: 80%;
}

.single h3{
  color: #006494;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 80%;
}

/**FOOTER*/

.footer-prefeitura {
    background-color: #0a6ea8;
    color: #ffffff;
    padding: 40px 0;
}

.footer-logo {
    max-width: 170px;
}

.footer-text {
    font-size: 16px;
    line-height: 20px;
}

.footer-text a {
    color: #ffffff;
    text-decoration: underline;
}
