#header {
    padding: .5rem 0 2rem 0;
}
#header .logo {width: 100%; max-width: 200px;}
#header p {color: #7d7547; font-size: 17px; margin: 0; font-weight: bold;}
#header p a {color: #7d7547; text-decoration: none;}

/**/
#navigation {
    border-top: 1px solid #ffc661;
    border-bottom: 1px solid #ffc661;
    background: #f9f9f9;
    padding: 0;
}

#menu li a {
    font-size: 1.1rem;
    color: #000;
    padding: 1rem;
}

#menu li:hover > a,
#menu li.active > a {
    background-color: #ffc661;
}

#menu .dropdown-menu {
    border-radius: 0;
    background: #f9f9f9;
    border-color: #ffc661;
}

#menu .dropdown-menu li a {
    font-size: 1rem;
    padding: .3rem .8rem;
}

ul#search {margin: 0; list-style: none; padding: 0;}
ul#search form {display: none;}
ul#search li {position: relative;}
ul#search li a {color: #000;}

ul#search form {
    display: none;
    position: absolute;
    width: 300px;
    border: solid 1px #ffc661;
    background: #eab641;
    right: 0;
    z-index: 1000;
}

ul#search form input {
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
}

ul#search form button {border: none; background: none; padding-left: 0; color: #000;}

/* slideshow */

#carousel .carousel-caption {
    text-shadow: 0 0 3rem rgba(0,0,0, 1);
}
#carousel .carousel-caption h5 {
    font-size: 3rem;
    font-weight: bold;
}
#carousel .carousel-caption p {
    font-size: 1.5rem;
}

#carousel .carousel-indicators button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 1rem 3rem rgba(0,0,0, 1);
    opacity: 1;
}

#carousel .carousel-indicators button.active {
    background-color: #eab641
}

/* sections */

.section {
    padding: 4rem 0;
}

.section-info {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
}

.section-info header h3 {
    font-size: 1.7rem;
}

/* serviços */

#services {
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.service-item {text-align: center;}

.service-item header span {
    display: inline-flex;
    border:2px solid #ffc005;
    width: 5rem;
    height: 5rem;
    color: #eab641;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-item header h4 {
    margin: .5rem 0;
    font-size: 1.3rem;
}

.service-item header h4 a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.service-item header h4 a:hover {border-color: #000;}

.service-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Interação */

#interaction article {text-align: center;}

#interaction article header h4 {
    font-size: 1.4rem;
    color: #000;
}

#interaction article p {
    font-size: 1.1rem;
    color: #333;
}

/* noticias */

#news {background-color: #f9f9f9;}

#news h5 {
    text-align: center;
    margin-bottom: .5rem;
}

#news h5 a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

#news h5 a:hover {
    border-color: #c90;
    color: #c90;
}

#news h5 time {
    font-size: .9rem;
    color: #999;
}

#news p {text-align: center;}

#news p a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

/* =========================
   PREMIAÇÕES - INTEGRADO AO FUNDO DO SITE
   ========================= */

#awards{
    background:#f9f9f9;
    text-align:center;
    padding:4rem 0;
}

#awards .section-info header h3{
    color:#5c4414;
    font-weight:700;
    margin-bottom:.75rem;
}

#awards .section-info p{
    color:#5c4414;
    max-width:900px;
    margin:0 auto;
}

/* grade automática para qualquer quantidade de selos */

.awards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:32px;
    justify-items:center;
    align-items:start;
    margin-top:2.5rem;
}

/* card removido visualmente */

.award-card{
    width:100%;
    max-width:320px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:0;
    margin:0;
    background:transparent;
    border:none;
    box-shadow:none;
}

/* remove qualquer wrapper branco */

.award-image-wrap{
    width:auto;
    height:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 1.5rem auto;
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
}

/* imagem do selo */

.award-image-wrap img{
    max-width:150px;
    max-height:150px;
    width:auto;
    height:auto;
    display:block;
    object-fit:contain;
    filter:drop-shadow(0 6px 12px rgba(0,0,0,0.08));
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

/* título */

.award-card h5{
    font-size:1.35rem;
    line-height:1.3;
    color:#5c4414;
    margin:0 0 .6rem 0;
    text-align:center;
    font-weight:700;
}

/* descrição */

.award-card p{
    font-size:1rem;
    line-height:1.7;
    color:#6d6a63;
    margin:0;
    text-align:center;
}

/* responsivo */

@media (max-width: 991.98px){

    .awards-grid{
        grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
        gap:28px;
    }

}

@media (max-width: 575.98px){

    #awards{
        padding:3rem 0;
    }

    .award-image-wrap img{
        max-width:130px;
        max-height:130px;
    }

    .award-card h5{
        font-size:1.2rem;
    }

    .award-card p{
        font-size:.95rem;
    }

}

/* Fotos */

#photos {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    padding-bottom: 4rem;
}

.photo-item a {
    border: 2px solid #e3dbc6;
    padding: 2px;
    display: block;
}

.photo-item a:hover {border-color: #eab641;}

.photo-item p {
    font-size: 1rem;
    color: #999;
}

.photo-link-gallery {text-align: center;}

.photo-link-gallery p a {
    color: #000;
    border-bottom: 1px solid #000;
    text-decoration: none;
}

/* Páginas internas */

.form-select,
.form-control {
    border-radius: 0;
    box-shadow: none !important;
}

.form-select:focus,
.form-control:focus {
    border-color: #f9ae06;
    outline-color: #f9ae06;
}

/* Faqs */

.accordion-item h2 button {
    font-size: 1.2rem;
    color: #000000;
}

.accordion-button:not(.collapsed) {
    background-color: #e6e6e6;
    color: #000000;
}

.accordion-button:focus {
    border-color: #000000;
    box-shadow: 0 0 0 .25rem rgba(69, 73, 80, 0.25);
}

/* footer */

footer.section {
    background: #312e2e;
    padding-bottom: 0;
}

footer.section article {color: #ccc;}

footer.section article header h4 {
    font-size: 1.3rem;
    color: #eab641;
}

footer.section article ul {
    list-style-type: square;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

footer.section article ul li {margin-bottom: .5rem;}

footer.section article ul li a {
    color: #ccc;
    border-bottom: 1px solid transparent;
    text-decoration: none;
}

footer.section article ul li a:hover {
    color: #fff;
    border-color: #fff;
}

#copyright {
    border-top: 1px solid #595959;
    margin-top: 1rem;
    padding-top: 1rem;
}

#copyright p {
    margin: 0.5rem 0;
    text-align: center;
    color: #fff;
}

/* Botão WhatsApp */

.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow:2px 2px 3px #999;
    z-index:100;
}

.my-float{
    margin-top:16px;
}

/* Responsive */

@media (max-width: 991.98px) {

    #header {text-align:center;}

    #header .logo {margin:auto;}

    #header p {font-size:.9rem;}

    #navigation .navbar-toggler {margin:.5rem 0;}

    ul#search form {
        width:100%;
        position:relative;
        left:0;
        right:0;
    }

}