/*------------------------------------------------------------------
[Estilos Gerais]
*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #00acac;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.text-primary-custom {
    color: #00acac !important;
}

/*------------------------------------------------------------------
[Navbar] - ALTERADO
*/
.navbar {
    background-color: #fff; /* Fundo branco desde o início */
    transition: box-shadow 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Apenas adiciona sombra ao rolar */
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-light .navbar-nav .nav-link {
    color: #333; /* Cor do texto escura */
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #00acac; /* Cor de destaque */
}


/*------------------------------------------------------------------
[Seções e Efeito Parallax]
*/
section {
    padding: 80px 0;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.parallax .container {
    position: relative;
    z-index: 2;
}


/*------------------------------------------------------------------
[Hero Section]
*/
.hero-section {
    min-height: 100vh;
    padding: 0;
}

.hero-section .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.hero-section .btn-primary {
    background-color: #00acac;
    border-color: #00acac;
    padding: 12px 30px;
    font-weight: 600;
}

.hero-section .btn-primary:hover {
    background-color: #008a8a;
    border-color: #008a8a;
}


/*------------------------------------------------------------------
[Quote Section]
*/
#quote {
    background-color: #22282d;
}

#quote blockquote {
    font-size: 1.75rem;
    font-weight: 300;
    border: 0;
}

#quote blockquote i {
    color: #00acac;
}

#quote .blockquote-footer {
    font-size: 1rem;
}


/*------------------------------------------------------------------
[Services Section]
*/
.service-item .icon-circle {
    width: 80px;
    height: 80px;
    background-color: #00acac;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-item:hover .icon-circle {
    transform: scale(1.1);
}


/*------------------------------------------------------------------
[Testimonials Section]
*/
#depoimentos {
    background-color: #32a932; /* Cor de fundo original da seção */
}

#depoimentos .carousel-item {
    padding: 2rem 0;
}

#depoimentos blockquote {
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    border: 0;
}
#depoimentos .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

#depoimentos .carousel-indicators button.active {
    background-color: #fff;
}


/*------------------------------------------------------------------
[Contact Section]
*/
#contato .btn-success {
    background-color: #25D366;
    border-color: #25D366;
}
#contato .btn-success:hover {
    background-color: #1DA851;
    border-color: #1DA851;
}


/*------------------------------------------------------------------
[Footer]
*/
footer {
    background-color: #22282d;
}

/*------------------------------------------------------------------
[Media Queries para Responsividade]
*/
@media (max-width: 991.98px) {
    .navbar {
        background-color: #fff;
    }
}

@media (max-width: 767.98px) {
    h1, .display-4 {
        font-size: 2.5rem;
    }

    .hero-section .tagline {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
    }
}