* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f5f5f5;
}

/* Classes comuns */

.paralax {
    background-size: cover !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.h2 {
    color: #7572AD;
}

.form-control {
    border: 0;
    border-bottom: 2px solid #6e6c9e7a;
    border-radius: 0px !important;
}

.form-control:focus {
    border-bottom: 2px solid #7572AD !important;
    box-shadow: none;
}

.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Número de linhas a serem exibidas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Classes dinâmicas JS */
.hidden {
    opacity: 0 !important;
    transition: all 0.5s !important;
    filter: blur(5px);
}

.show {
    opacity: 1 !important;
    filter: blur(0px);
}

/* Animações específicas */
.fade-up {
    transform: translateY(30%);
}

.fade-down {
    transform: translateY(-30%);
}

.fade-left {
    transform: translateX(-30%);
}

.show.fade-up {
    transform: translateY(0);
}

.show.fade-down {
    transform: translateY(0);
}

.show.fade-left {
    transform: translateX(0);
}

/* Nav bar */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
}

/* hide close when burger shown */
.navbar-toggler.collapsed .close-icon {
    display: none;
    color: #fff !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    display: inline;
}

/* Hero section */
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/b1.webp') no-repeat center right/cover;
}

.hero2 {
    position: relative;
    height: 100vh;
    background: url('../images/b3.webp') no-repeat center right/cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*   background: rgba(0, 0, 0, 0.5); */
    /* Dark overlay */
}

.caption {
    position: absolute;
    bottom: 20%;
    left: 3%;
    color: white;
}

.caption h1 {
    margin: 0;
    color: #ffc107;
    /* Cor modificada */
}

.caption p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

/* Our purpose */
.our-purpose-section{
    background-color: #E4E4E4;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0; /* Espaçamento interno */
    color: white;
    text-align: center;
    min-height: 400px; /* Altura mínima para garantir o efeito parallax */
}
/* Estilo específico para cada seção */
.parallax-section.investimentos {
    background-image: url('../images/b4.webp');
    padding-bottom: 10rem!important;
    padding-top: 10rem!important;
}
.parallax-section.atuacao {
    background-image: url('../images/b5.webp');
    padding-bottom: 10rem!important;
    padding-top: 10rem!important;
}

/* investimentos */
.investimentos p{
    color: #000;
}
.investimentos h1{
    color: #F4B533;
}

/* atuacao */
.atuacao p{
    color: #000 !important;
}
.atuacao h1{
    color: #fff !important;
}

/* About */
.about-section {
    color: white;
    background: url('../images/h1.webp') no-repeat center fixed;
}

.about-section .container {
    max-width: 100%;
}

.about-section h1 {
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.about-section p {
    color: #ededed;
}

@media (min-width: 992px) {
    .about-section .text-container {
        max-width: 50%;
    }
}


.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /* Opcional: bordas arredondadas */
    transition: transform 0.3s ease-in-out;
    /* Transição para o efeito de escala */
}

.about-section .image-container .image:hover img {
    transform: scale(1.1);
    /* Aumenta a escala da imagem ao passar o mouse */
}

/* Empresa do grupo */
.empresas-do-grupo {
    background: url('../images/h2.webp') no-repeat center fixed;
}
.empresas-do-grupo h1, .outros-servicos h1 {
    color: #F4B533;
}

.empresas-do-grupo .image {
    max-width: 97%;
    height: auto;
}

/* Trabelhe e fale conosco */
/* Section Styles */
.contact-section {
    padding: 50px 0;
}

.work-with-us-section {
    padding: 50px 0;
    background-color: #E4E4E4;
}

.contact-section h1, .work-with-us-section h1{
    color: #F4B533;
}

.contact-section p {
    font-size: 1.2em;
    color: #666;
}

.contact-info,
.work-with-us-info {
    margin-top: 20px;
}

.contact-info p,
.work-with-us-info p {
    color: #333;
}

.contact-info i,
.work-with-us-info i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #F4B533;
}

/* Form Styles */
.contact-form,
.work-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 460px;
}

.contact-form .form-control,
.work-form .form-control {
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact-form button,
.work-form button {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    border-radius: 5px;
}

/* Footer Styles */
.footer {
    background-color: #1e1d25;
    color: white;
    padding: 40px 0;
}

.footer .logo img {
    max-width: 150px;
}

.footer .social-icons a {
    text-decoration: none;
/*     margin: 0 10px;
    font-size: 1.5em;
    color: #262431;
    transition: all 0.2s ease;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%; */
}
/* 
.footer .social-icons a:hover {
    color: #fff;
    background-color: #7572AD;
} */

.footer .important-info {
    margin: 20px 0;
}

.footer-bottom {
    background-color: #1a1921;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
}

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    z-index: 99;
    width: 50px;
    height: 50px;
    /* background-color: #fb4f00; */
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    text-align: center;
}