*, *::before, *::after {
    box-sizing: border-box;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slideInFixed {
    0% {
        transform: translateX(100%);
        opacity: 0
    }

    60%,
    to {
        transform: translateX(0);
        opacity: 1
    }
}

body,
html {
    touch-action: pan-x pan-y;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #fdf9f6;
    color: #3a2e2c;
    scroll-behavior: smooth;
    overflow-x: hidden
}

.section-title,
.text-line h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    color: #3a2e2c
}

.section-title {
    font-size: 2rem;
    line-height: 1.1;
}
.section-title2 {
    font-size: 1rem;
    line-height: 1.1;
	font-style: italic;
	margin-bottom: 2rem
}

.is-visible {
    opacity: 1 !important;
    transform: none !important
}

.page-content {
    position: relative;
    z-index: 3;
    background-color: #fdf9f6
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    max-width: 100vw;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #737373a1;
    box-shadow: none;
    transition: all .5s ease-in-out
}

.navbar.scrolled {
    background-color: transparent;
    padding: 0 20px;
    height: 45px
}

.navbar .logo-img {
    width: 150px;
    margin-top: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .6s ease-in-out
}

.navbar.scrolled .logo-img {
    width: 100px;
    margin-top: 20px !important
}

.menu-toggle {
    background: 0 0;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all .3s ease
}

.hamburger-line.scrolled {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all .3s ease;
	box-shadow: 0px 0px 2px 1px #fff;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    z-index: 1
}

.hero-image-layer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 60vh;
    background-image: url(../images/2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInFixed 1.2s ease-out 1.3s forwards
}

.hero-text-layer {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-overlay-content {
    position: absolute;
    bottom: 3rem;
    left: 5%;
    padding: 2rem 2rem 2rem 0;
    pointer-events: auto;
    opacity: 0;
    animation: slideInFromLeft .8s ease-out 1.4s forwards
}

.text-line h1 {
    font-size: 4rem;
    line-height: 1.05;
    display: table;
    padding: 0 10px 14px;
    background-color: #fdf9f6;
    margin: 0
}

.cta-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%
}

.contato-lista li a,
.cta-link {
    text-decoration: none;
    font-weight: 700
}

.cta-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: #3a2e2c;
    font-size: 1rem;
    transition: transform .3s ease;
    text-align: center;
    margin-bottom: .5rem
}

.cta-link:hover {
    transform: translateY(-3px)
}

.text-left {
    text-align: left !important;
    text-decoration: none !important
}

.cta-arrow {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin-left: 20px;
    background-color: #f77f00;
    border-radius: 40px
}

.stats-section-slogan {
    padding: 1rem 0;
    background-color: #fdf9f6;
    overflow: hidden
}

.stats-section {
    padding-bottom: 2rem 0;
    background-color: #fdf9f6
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
    will-change: transform, opacity
}

.stat-item {
    text-align: center
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
	
	.hero-container {
        height: 50vh !important;
    }
	
	.blog-section .row > div:nth-child(3) {
        display: none;
    }
	
	.stat-title {
    font-size: 1.10rem !important;
	}
	
	section[id] {
        scroll-margin-top: 110px;
    }
}

@media (min-width:768px) {
    .stat-item {
        text-align: left
    }
}


.btn-secondary-topo{
    display: block;              /* 🔴 essencial */
    width: fit-content;          /* botão só do tamanho do texto */
    margin-top: 60px;
    margin-left: auto;           /* 🔴 empurra para a direita */
	margin-right: 10px;
    padding: 6px 6px;
    background-color: #fdf9f6;
    border: 2px solid #f77f00;
    border-radius: 4px;

    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all .3s ease;
}

a.btn-secondary-topo{
	color:#f77f00;
	text-decoration: none;
}

.feature-text h3,
.stat-number,
.stat-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700
}

.stat-number {
    font-size: 2rem;
    color: #f77f00;
    display: block;
    text-align: center
}

.feature-text h3,
.stat-title {
    color: #3a2e2c
}

.stat-title {
    font-size: 1.17rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #3a2e2c;
    display: inline-block;
    width: 100%;
    text-align: center
}

.stat-description {
    font-size: .9rem;
    color: #6b5e5c;
    line-height: 1.6;
    text-align: center
}

.sobre-image-col {
    width: 100%;
    height: 500px;
    background-image: url(../images/m2a-6352.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out .2s, transform 1s ease-out .2s
}

.orange-corner-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 25%;
    max-width: 150px;
    max-height: 150px;
    background-color: #f77f00
}

.sobre-content-col {
    padding: 2rem 5%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out .4s, transform 1s ease-out .4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.sobre-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b5e5c;
    margin-bottom: 1.5rem
}

.estrutura-section {
    width: 100%;
    padding-top: 2rem;
    background-color: #fdf9f6
}

.features-gallery {
    display: block;
    width: 100%;
    padding: 0 5px
}

.feature-item {
    position: relative;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(58, 46, 44, .05);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #eaeaea;
    width: 100%;
    transform: translateY(30px);
    transition: opacity .8s ease-out, transform .8s ease-out, box-shadow .4s ease
}

.feature-text {
    position: absolute;
    bottom: 1rem;
    left: 0;
    background-color: #fdf9f6ed;
    padding: 1rem;
    width: 80%;
    min-height: 100px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    z-index: 5;
    transform: translateY(100%);
    opacity: 0;
    transition: all .6s cubic-bezier(.23, 1, .32, 1)
}

.feature-description {
    margin-bottom: 0 !important
}

.feature-text::before,
.localizacao-parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%
}

.feature-text::before {
    width: 10px;
    background-color: #f77f00;
    border-radius: 4px 0 0 4px
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: .25rem
}

.feature-item.is-visible,
.feature-item:hover .feature-text,
.owl-item .feature-item,
.reveal-up.is-visible {
    transform: translateY(0);
    opacity: 1
}

.owl-theme .owl-dots .owl-dot span {
    background: #ccc;
    border-radius: 0 !important
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #f77f00
}

.features-gallery {
    position: relative;
    overflow: visible !important;
    z-index: 1
}

.features-gallery .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    height: 0;
    transform: translateY(-50%);
    pointer-events: none
}

.features-gallery .owl-nav button.owl-next,
.features-gallery .owl-nav button.owl-prev {
    position: absolute !important;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #f77f00 !important;
    color: #fff !important;
    border-radius: 50%;
    border: 0;
    outline: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .2);
    cursor: pointer;
    z-index: 9999;
    pointer-events: auto;
    margin: 0 !important
}

.features-gallery .owl-nav button span {
    font-size: 3rem;
    line-height: 0;
    padding-bottom: 8px
}

.features-gallery .owl-nav button.owl-prev {
    left: -60px
}

.features-gallery .owl-nav button.owl-next {
    right: -50px
}

.features-gallery .owl-nav button.owl-next:hover,
.features-gallery .owl-nav button.owl-prev:hover {
    background-color: #3a2e2c !important;
    transform: scale(1.1)
}

@media (max-width:1300px) {
    .features-gallery .owl-nav button.owl-prev {
        left: -10px
    }

    .features-gallery .owl-nav button.owl-next {
        right: -10px
    }
}

@media (max-width:768px) {
	
	.btn-secondary-topo{
    margin-top: 12px;
	}
    .mobile-nav-content {
        width: 80% !important
    }

    .features-gallery .owl-nav {
        display: none !important
    }

    .estrutura-section .feature-item {
        width: 100%;
        height: auto;
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end
    }

    .feature-text {
        position: relative;
        transform: none;
        opacity: 1;
        width: 100%;
		min-height: 178px;
        margin-top: auto
    }
	
	.feature-text {

    bottom: 0;

	}
}

.depoimentos-section {
    padding: 2rem 0;
    overflow: hidden;
    background-color: #fdf9f6
}

.depoimentos-container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative
}

.depoimentos-section {
    background: #fff7f3
}

.dep-card {
    height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.dep-name {
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 13px;
    margin: 6px 0 10px;
    color: #334;
	text-align:center
}

.dep-text {
    font-size: 12px;
    line-height: 1.35;
    color: #556;
    max-height: 90px;
    overflow: hidden;
	text-align:center;
}

.depoimentos-carousel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 260px
}

.blog-section {
    padding: 2rem 0;
    background-color: #fff
}

.blog-post {
    background-color: #fdf9f6;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(58, 46, 44, .05);
    height: 100%
}

.post-image-placeholder {
    width: 100%;
    margin-bottom: 0
}

.blog-post h3,
.post-tag {
    font-weight: 700;
    margin-bottom: .5rem
}

.post-tag {
    display: inline-block;
    background-color: #3a2e2c;
    color: #fdf9f6;
    font-size: .75rem;
    padding: .25rem .75rem;
    border-radius: 20px;
    text-transform: uppercase
}

.blog-post h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    line-height: 1.3
}

.post-date {
    font-size: .9rem;
    color: #6b5e5c;
    margin-bottom: 1rem
}

.btn-secondary,
.btn-three,
.read-more {
    font-weight: 700;
    color: #f77f00;
    text-decoration: none;
    transition: opacity .3s
}

.read-more:hover {
    opacity: .8
}

.btn-secondary,
.btn-three {
    padding: 6px 6px;
    background-color: #fdf9f6;
    border: 2px solid #f77f00;
    border-radius: 4px;
    margin-top: 60px;
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all .3s ease
}

.btn-secondary:hover,
.btn-three:hover {
    background-color: #f77f00;
    color: #3a2e2c
}

.btn-three {
    background-color: transparent;
    margin-top: 0
}

.comunidade-section {
    padding-bottom: 2rem;
    background-color: #fff
}

.comunidade-subtitle {
    font-size: 1.1rem;
    color: #6b5e5c;
    margin-bottom: 2rem;
    max-width: 700px
}

.comunidade-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out .2s, transform 1s ease-out .2s
}

.logo-item {
    text-align: center
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .3s ease
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1
}

.localizacao-section {
    background-color: #fdf9f6;
    padding: 0
}

.localizacao-parallax,
.localizacao-parallax-footer {
    min-height: 300px;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

.localizacao-parallax-footer {
    background-image: url(../images/mapa-local.jpg);
    min-height: 40px
}

.localizacao-parallax::before {
    width: 100%;
    background: rgba(0, 0, 0, .3)
}

.localizacao-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out .4s, transform 1s ease-out .4s;
}

.localizacao-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b5e5c;
    text-align: justify;
    margin-right: 60px
}

.localizacao-lista {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin: 35px 0 0
}

.local {
    color: #f77f00;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
    margin-top: 2px
}

.localizacao-lista li:hover i {
    transform: scale(1.1);
    transition: transform .3s ease
}

@media (max-width:768px) {
    .localizacao-parallax {
        background-attachment: scroll;
        min-height: 250px
    }

    .localizacao-text {
        text-align: center
    }

    .localizacao-lista li {
        text-align: left;
        display: inline-block
    }
	
	.carousel-indicators {
		bottom: 0px !important
	}
}

.contato-section {
    padding: 2rem 0;
    background-color: #fdf9f6
}

.contato-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out .2s, transform 1s ease-out .2s
}

.contato-form {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out .4s, transform 1s ease-out .4s
}

.contato-lista {
    list-style: none;
    padding-left: 0
}

.contato-lista li {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: #6b5e5c;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.contato-lista li strong {
    display: block;
    color: #3a2e2c;
    font-size: 1.1rem
}

.contato-lista li a {
    color: #f77f00
}

.form-control,
.form-label {
    font-family: "Montserrat", sans-serif;
    color: #3a2e2c
}

.form-label {
    font-weight: 700;
    font-size: .9rem
}

.form-control {
    width: 100%;
    padding: .75rem 1rem;
    font-size: 1rem;
    border: 2px solid #3a2e2c;
    border-radius: 4px;
    background-color: #fff
}

.form-control:focus {
    box-shadow: none;
    border-color: #f77f00
}

.btn-submit,
.mobile-nav-links a {
    font-family: "Oswald", sans-serif;
    color: #3a2e2c;
    font-weight: 700
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #f77f00;
    border: 0;
    border-radius: 4px;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease
}

.btn-submit:hover,
.footer {
    background-color: #3a2e2c;
    color: #fff
}

.footer {
    padding-top: 2rem;
    color: #fdf9f6;
    text-align: center;
    font-size: .9rem;
    line-height: 1.6
}

.footer p {
    margin-bottom: .5rem
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 2000;
    display: flex;
    flex-direction: row;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible
}

.mobile-nav-content,
.mobile-nav-image {
    height: 100%;
    transition: transform .8s ease-in-out
}

.mobile-nav-image {
    width: 70%;
    background-image: url(../images/image1.png);
    background-size: cover;
    background-position: center;
    transform: translateX(-100%)
}

.mobile-nav-content {
    width: 30%;
    background-color: #f77f00;
    position: relative;
    display: flex;
    align-items: center;
    transform: translateX(100%)
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding-left: 15%
}

.mobile-nav.active .mobile-nav-content,
.mobile-nav.active .mobile-nav-image {
    transform: translateX(0)
}

.mobile-nav-links a {
    text-decoration: none;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: opacity .3s ease
}

.footer p,
.mobile-nav-links a:hover {
    opacity: .7
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    z-index: 2001;
    background: 0 0;
    width: 40px;
    height: 40px;
    border: 0;
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width:991px) {
    .estrutura-section .feature-item {
        width: 100%
    }

    .depoimentos-title {
        font-size: 2.8rem;
        max-width: 80%
    }
}

@media (max-width:768px) {

    .contato-form,
    .contato-info,
    .localizacao-map,
    .localizacao-text,
    .sobre-content-col,
    .sobre-image-col,
	
    .stat-item {
        opacity: 1 !important;
        transform: none !important;
		padding: 0 10px 0 10px
    }

    .navbar {
        padding: .5rem 5%;
        height: 60px;
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #fdf9f6;
        /*box-shadow: 0 2px 5px rgba(0, 0, 0, .1)*/
    }

    body {
        padding-top: 45px
    }

    .logo-img {
        width: 120px;
        margin-top: 45px !important
    }

    .hero-container {
        height: 70vh;
        position: relative
    }

    .hero-image-layer {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        transform: none;
        opacity: 1
    }

    .hero-text-layer {
        height: 100%
    }

    .hero-overlay-content {
        padding: 1rem;
        bottom: auto;
        margin-top: 14rem
    }

    .text-line h1 {
        font-size: 2.2rem;
        white-space: normal
    }

    .cta-line {
        gap: 1rem
    }

    .cta-link {
        flex-direction: row;
        gap: 1rem
    }

    .section-title {
        font-size: 1.8rem
    }

    .localizacao-desc {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #6b5e5c;
        text-align: center;
        margin-right: 0
    }

    .localizacao-text,
    .sobre-content-col {
        padding: 0 10px 0 10px;
    }

    .testimonial-slide {
        flex-direction: column;
        min-height: auto
    }

    .testimonial-image-col {
        min-height: 250px;
        min-width: 100%;
        margin-top: 0
    }

    .testimonial-quote-col {
        min-width: 100%
    }

    .slider-controls {
        position: static;
        margin-top: 1rem;
        padding-left: 1.5rem;
        justify-content: flex-start
    }

    .testimonial-quote-col {
        padding: 2rem 1.5rem
    }

    .quote-mark {
        font-size: 4rem;
        top: 0;
        left: 1rem;
        opacity: .3;
        height: 38px
    }

    .testimonial-text {
        font-size: 1.1rem
    }

    .mobile-nav-image {
        width: 40%
    }

    .mobile-nav-content {
        width: 100%;
        padding-left: 2rem
    }

    .mobile-nav-links {
        padding-left: 0
    }
}

#heroCarousel,
.carousel-inner,
.carousel-item {
    height: 100%;
    width: 100%;
    position: relative
}

.hero-carousel-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 2;
    pointer-events: none
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0
}

.sobre-section {
    min-height: auto !important;
    padding: 2rem 0
}

.sobre-description-centered p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 300;
    margin: 0 auto 1.5rem;
    max-width: 90%
}

.sobre-section .section-title {
    color: #3a2e2c;
    text-transform: lowercase
}

.comunidade-logo-grid {
    display: block
}

.community-carousel .owl-nav button.owl-next,
.community-carousel .owl-nav button.owl-prev {
    background-color: transparent !important;
    color: #3a2e2c !important;
    font-size: 3rem !important;
    top: 40%
}



.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    width: 100%;
    transition: transform .3s ease;
    padding: 10px;
    cursor: pointer
}

.logo-item:hover {
    transform: scale(1.05)
}

.community-carousel .item-slide-page {
    min-height: 500px
}

.figure {
    display: inline-block
}

figure {
    margin: 0px
}

.social-icons svg,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

figcaption {
    background-color: #eee;
    padding: 5px
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 50px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 2rem !important;
    margin-left: 15%
}

.separator-dots,
.separator-dots2 {
    width: 100%;
    clear: both;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0
}

.separator-dots span,
.separator-dots2 span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #f37021
}

.separator-dots2 span {
    background-color: #61ccd7
}

.carousel-indicators {
    height: 8px !important
}

.linha-gradiente-centro,
.linha-gradiente-centro2 {
    width: 580px;
    height: 4px;
    margin: 40px auto;
    border-radius: 4px
}

.linha-gradiente-centro {
    background: linear-gradient(to right, rgba(247, 127, 0, 0), #f77f00, rgba(247, 127, 0, 0))
}

.linha-gradiente-centro2 {
    background: linear-gradient(to right, rgba(97, 204, 215, 0), #61ccd7, rgba(97, 204, 215, 0))
}

.feather {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
    margin: 0 auto
}

.features-gallery,
.features-gallery .feature-item {
    cursor: grab
}

.features-gallery .feature-item:active,
.features-gallery:active {
    cursor: grabbing
}

.swiper-wrapper {
    cursor: grab
}

.swiper-wrapper:active
 {
    cursor: grabbing
}

.post-article {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto
}

.post-header {
    margin-bottom: 2rem
}

.post-content h2,
.post-header h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 700
}

.post-header h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #3a2e2c;
    margin-bottom: .5rem
}

.post-content p,
.post-meta {
    font-size: .9rem;
    color: #6b5e5c;
    margin-bottom: 1.5rem
}

.post-meta .post-tag {
    background-color: #f77f00;
    color: #3a2e2c;
    padding: .3rem .8rem;
    border-radius: 20px;
    font-weight: 700
}

.post-image {
    width: 100%;
    height: 400px;
    background-color: #eaeaea;
    background-image: url(images/m2a-6352.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 2rem
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a2e2c
}

.post-content h2 {
    font-size: 2rem;
    color: #f77f00;
    margin-top: 2rem;
    margin-bottom: 1rem
}

@media (max-width:768px) {
    .post-article {
        padding-top: 1.5rem
    }

    .post-header h1 {
        font-size: 2rem
    }

    .post-image {
        height: 250px
    }
}

.localizacao-parallax.map-parallax {
    position: relative;
    height: 450px
}

.localizacao-parallax.map-parallax .map-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none
}

@media (max-width:768px) {
    .localizacao-parallax.map-parallax .map-iframe {
        width: 100%;
        height: 100%;
        pointer-events: auto;
        transform: translate(-50%, -50%)
    }
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0
}


.reveal-up.reveal-from-right {
    transform: translateX(260px)
}

.reveal-up.reveal-from-right.is-visible {
    transform: translateX(0)
}

.carousel-caption>* {
    transition: all .6s ease
}

.carousel-item.active .carousel-caption>* {
    opacity: 1;
    transform: translateY(0)
}

.carousel-item.active .carousel-caption h1 {
    transition-delay: .1s
}

.carousel-item.active .carousel-caption p {
    transition-delay: .25s
}

.carousel-item.active .carousel-caption a {
    transition-delay: .4s
}

.carousel-item img {
    transform: scale(1);
    transition: transform 6s ease
}

.carousel-item.active img {
    transform: scale(1.08)
}

.reveal-up.reveal-from-top {
    transform: translateY(-40px)
}

.reveal-up.reveal-from-top.is-visible {
    transform: translateY(0)
}

.cta-interesse {
    padding: 0
}

.cta-box {
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 14px;
    padding: 28px 18px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    max-width: 900px;
    margin: 0 auto
}

.cta-title {
    margin: 0 0 8px;
    font-weight: 700
}

.cta-text {
    margin: 0 0 16px;
    opacity: .85
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1f1f1f;
    color: #fff;
    z-index: 9999;
    padding: 16px 12px;
    display: none
}

.cookie-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.cookie-text {
    font-size: 14px;
    line-height: 1.4
}

.cookie-text p {
    margin: 4px 0 0;
    opacity: .85
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.cookie-link {
    color: #bbb;
    font-size: 14px;
    text-decoration: underline
}

.cookie-link:hover {
    color: #fff
}

.cookie-btn {
    background: #ff8c2a;
    border: 0;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer
}

.cookie-btn:hover {
    opacity: .9
}

@media (max-width:768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center
    }
}

.post-content figure.figure {
    width: 100%;
    margin: 0 0 12px
}

.post-content figure.figure>img.img-fluid {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
    object-fit: cover
}

.accordion {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e6ea;
    background: #fff
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid #e2e6ea
}

.accordion-item:last-child {
    border-bottom: none
}

.accordion-button {
    color: #1f2d3d;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: 16px 20px;
    box-shadow: none
}

.accordion-button:not(.collapsed) {
    background-color: #f77f0042;
    color: #1f2d3d
}

.accordion-button:focus {
    box-shadow: none;
    outline: 0
}

.accordion-button::after {
    filter: brightness(.4)
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
    font-size: .95rem;
    color: #333
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .9rem
}

.table thead th {
    background-color: #f4f6f8;
    color: #1f2d3d;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .5px;
    border-bottom: 2px solid #dee2e6
}

.table tbody td {
    vertical-align: middle;
    padding: 8px 4px;
    color: #333
}

.table-bordered>:not(caption)>* {
    border-color: #dee2e6
}

.table tbody tr:nth-child(even) {
    background-color: #fafafa
}

.table td:nth-child(4) {
    font-size: .85rem;
    line-height: 1.4
}

.table td:last-child {
    font-weight: 700;
    color: #666
}

@media (max-width:768px) {
    .logo-img {
        width: 80px !important;
        margin-top: 17px !important
    }

	.navbar.scrolled .logo-img {
		width: 80px !important;
		margin-top: 15px !important
	}


    .linha-gradiente-centro,
    .linha-gradiente-centro2 {
        width: 340px
    }

@media (max-width:768px) {
    .navbar {
        background-color: #a1a1a1 !important;
        padding: 0 15px !important;
        height: 45px !important
    }
    
    .navbar.scrolled {
		background-color: transparent !important;
        padding: 0 15px !important;
    }
}

    .hero-carousel-img {
        height: auto;
        width: 100%;
        object-fit: cover;
        object-position: center
    }

    #heroCarousel,
    .carousel-inner,
    .carousel-item {
        height: auto;
        width: 100%;
        position: relative
    }

    .hero-container {
        height: 36vh;
        position: relative
    }

    .dep-card {
        background: #f2f2f2;
        border-radius: 20px;
        text-align: center;
        height: 227px;
        display: flex;
        flex-direction: column;
        align-items: center
    }
}

.features-gallery .owl-item {
    display: flex
}

.features-gallery .owl-item .item {
    width: 100%
}

.features-gallery .item {
    display: block;
    width: auto !important
}

.features-gallery .stat-item {
    width: 100%;
    height: 100%
}

.dep-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    border: 6px solid #F77F00;
    background-color: #fff;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dep-card,
.owl-item {
    max-width: none !important
}

#loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.loading-box p {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

/* spinner clássico */
.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #ddd;
    border-top-color: #e67e22;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
	z-index: 500;
    pointer-events: none;
	cursor: pointer;
}

.hero-scroll-indicator .arrow-down {
    display: block;
    width: 30px;
    height: 30px;
	
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    animation: arrowBounce 2s infinite;
}

/* Animação suave, sem chamar atenção demais */
@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(6px) rotate(-45deg);
    }
    60% {
        transform: translateY(3px) rotate(-45deg);
    }
}

/*
#heroCarousel .carousel-indicators {
    position: absolute;
    right: 32px;       
    left: auto;        
    bottom: 24px;      
    margin: 0;
    justify-content: flex-end;
}
*/

.hero-scroll-indicator {
    position: absolute;
    z-index: 20;
    pointer-events: auto; /* seta recebe clique */
    cursor: pointer;
}

/* Banner continua clicável, EXCETO onde tem a seta */
.hero-carousel-img {
    pointer-events: auto;
}

/* Área do carousel */
#heroCarousel {
    position: relative;
}

.hero-scroll-indicator {
    pointer-events: auto;
}

.hero-scroll-indicator ~ .carousel-inner a {
    pointer-events: none;
}

/* Modal de imagem (zoom) */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.image-modal-content {
    max-width: 100%;
    max-height: calc(100vh - 180px); /* 🔴 reserva espaço p/ legenda */
    object-fit: contain;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    animation: zoomIn 0.25s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Feedback visual de clique */
.zoom-image {
    cursor: pointer;
}

.zoom-image:active{
    cursor: grabbing
}

.image-modal-wrapper {
    text-align: center;
    max-width: 90%;
    max-height: 90%;
}

.image-modal-caption {
    margin-top: 16px;
    color: #fff;
}

.image-modal-caption h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.image-modal-caption p {
    font-size: 14px;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

/* Corrige texto borrado no Owl Carousel */
.owl-carousel .owl-item {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

/* Força renderização correta do texto */
.owl-carousel .owl-item * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Botão "Tenho interesse" */
.btn-interesse {
    background-color: #f77f00;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

	.margin-top-mobile{
		margin-top: 0px;
	}
	

.btn-interesse:hover {
    background-color: #3a2e2c;
    color: #fff;
}

@media (max-width: 768px) {
    .btn-interesse {
        /*display: none;*/
    }

	
    .swiper-pagination {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        white-space: nowrap;
		height: 20px;
    }

    .swiper-pagination-bullet {
        flex-shrink: 0;
    }


    section[id] {
        scroll-margin-top: 110px;
    }
}

/* padrão desktop */
.swiper-button-prev,
.swiper-button-next {
    display: none;
}

/* mobile */
@media (max-width: 768px) {
    .swiper-pagination {
        display: none;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: block;
    }
}

.capacidade-swiper {
    width: 100%;
}

.capacidade-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.capacidade-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.capacidade-swiper .swiper-pagination-bullet-active {
    background: #f77f00;
}

.estrutura-swiper {
    width: 100%;
    height: auto;
}

.estrutura-swiper .swiper-slide {
    display: flex;
}

.estrutura-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.estrutura-swiper {
    padding-bottom: 80px; /* espaço para os bullets */
}

.capacidade-swiper {
    padding-bottom: 50px; /* espaço para os bullets */
}

.estrutura-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.estrutura-swiper .swiper-slide img {
    object-fit: contain;
}

.depoimentos-carousel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 260px;
}

.depoimentos-swiper .swiper-wrapper {
    display: flex !important;
}

.pdDerk{
padding-left: 80px;
padding-right: 80px;
}

@media (max-width: 768px) {
    .estrutura-section .feature-item {
        transform: none !important;
        transition: none;
    }

    .estrutura-swiper .swiper-slide {
        height: auto;
        align-items: stretch;
    }

    .estrutura-section .feature-item {
        display: flex;
        flex-direction: column;
        height: auto;
    }
	
	.mrgmob{
		margin-bottom: 50px;
	}
	
	.pdDerk{
	padding-left: 0px;
	padding-right: 0px;
	}
}

.navbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #5da378;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.navbar-social a:hover {
    background-color: #3c6b4e;
    transform: translateY(-2px);
}

/* ===== BLOCO REDES SOCIAIS (estilo parecido com seu card CTA) ===== */
.redes-section{
  padding: 28px 0;
  background: transparent;
}

.redes-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 28px 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  text-align: center;
}

.redes-title{
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #3a2e2c;
}

.redes-subtitle{
  margin: 0 0 18px;
  color: #6b5e5c;
  font-size: 1rem;
}

.redes-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* botões redondos */
.redes-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: #3a2e2c;
  transition: transform .2s ease, opacity .2s ease;
  font-size: 18px;
}

.redes-icon:hover{ transform: translateY(-2px); opacity: .9; }

/* opcional: cores por rede (se quiser manter tudo “sóbrio”, apague essas 3) */
.redes-icon--ig{ background:#3a2e2c; }
.redes-icon--in{ background:#3a2e2c; }
.redes-icon--wa{ background:#3a2e2c; }

/* Hover com cor da rede */
.redes-icon--ig:hover{
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.redes-icon--in:hover{
  background: #0a66c2;
}

.redes-icon--wa:hover{
  background: #25d366;
}

/* Efeito sutil */
.redes-icon:hover{
  transform: translateY(-2px);
  opacity: 1;
}

.redes-icon{
  transition: background .25s ease, transform .2s ease;
}

/* botão no mesmo espírito do “TENHO INTERESSE” */
.redes-btn{
  padding: 8px 14px;
  border-radius: 8px;
  border: 2px solid #f77f00;
  color: #f77f00;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.redes-btn:hover{
  background: #f77f00;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px){
  .redes-card{ padding: 22px 14px; }
  .redes-title{ font-size: 1.4rem; }
}

.tabela-condicoes{
	background: #fff; border: 1px solid #DDD;
}

@media (max-width: 400px) {
    .hero-container {
        height: 41vh;
        position: relative;
    }
}

@media (max-width: 768px) {
	.mobile-nav-links a {
    text-decoration: none;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: opacity .3s ease;
}
	.dep-avatar {

    margin: 10px auto 10px auto;

}
	
.form-check {

    text-align: left;
}

    /* esconde cabeçalho */
    .table thead {
        display: none;
    }
	
	.tabela-condicoes{
	border: none;
}

    .table,
    .table tbody,
    .table tr {
        display: block;
        width: 100%;
    }

    .table tr {
        margin-bottom: 16px;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 12px 14px;
        background: #fff;
    }

    .table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        padding: 6px 0;
        border: none;
        text-align: left !important; /* anula text-center */
        font-size: 14px;
    }

    /* rótulo padrão */
    .table td::before {
        font-weight: 600;
        color: #555;
        flex: 0 0 45%;
        white-space: normal;
    }

    /* rótulos por coluna */
    .table td:nth-child(1)::before {
        content: "Número de posições";
    }

    .table td:nth-child(2)::before {
        content: "Auditório *";
    }

    .table td:nth-child(3)::before {
        content: "Salas 4 e 5 (miniauditório)";
    }

    .table td:nth-child(4)::before {
        content: "Salas 1–2–3";
    }

    .table td:nth-child(5)::before {
        content: "Estúdio";
    }
}

.galeria-swiper {
    width: 100%;
    overflow: hidden;
}

.galeria-swiper .swiper-wrapper {
    display: flex;
}

.galeria-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
}
.galeria-swiper {
    width: 100%;
	   height: 450px;           /* ALTURA PADRÃO */
    overflow: hidden;
}


.galeria-swiper img {
    width: 100%;
	   height: 450px;           /* ALTURA PADRÃO */
    display: block;
}

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

.galeria-swiper .swiper-wrapper {
    align-items: flex-start; /* impede centralização vertical */
}

.galeria-swiper .swiper-slide {
    height: auto !important;
    display: flex;
    align-items: flex-start;
}


/* remove baseline e ocupa largura */
.galeria-swiper img{
    display: block;
    width: 100%;
    height: auto;
}

/* MOBILE */
@media (max-width: 768px) {
    .galeria-swiper .swiper-pagination {
        display: none;
    }
    .galeria-swiper .swiper-button-prev,
    .galeria-swiper .swiper-button-next {
        display: block;
    }
	
	.capt{
	background: #EEE;
    text-align: left !important;
    padding: 7px;
	font-size:12px !important;
	}
	
	.bordaPag{
		    padding-left: 30px;
    padding-right: 30px;
	}
}

/* DESKTOP */
@media (min-width: 769px) {
    .galeria-swiper .swiper-button-prev,
    .galeria-swiper .swiper-button-next {
        display: none;
    }
	
	.capt{
		background: #EEE;
		text-align: left !important;
		padding: 7px;
		margin-bottom: 26px;
	}
	
		.bordaPag{
		    padding-left: 80px;
    padding-right: 80px;
	}
}

.post-content iframe {
    display: block;
    margin: 30px auto;      /* centraliza */
    width: 100%;
    max-width: 900px;       /* largura máxima no desktop */
    aspect-ratio: 16 / 9;   /* mantém proporção */
    height: auto;
}