/* header */
 /* Teste */
 .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  color: var(--default-color);
}

.header .logo h1 {
  color: var(--heading-color);
  font-size: 24px; 
  margin-left: 10px;
  white-space: nowrap; 
}

.header .navmenu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.header .navmenu ul li {
  margin-left: 15px; /* Reduzi o espaçamento para caber melhor */
}

.header .navmenu a {
  color: #fff;
  font-size: 18px; /* Reduzi o tamanho da fonte para ganhar mais espaço */
  padding: 8px 16px; /* Reduzi o padding */
  text-decoration: none;
}

.header .navmenu a:hover,
.header .navmenu .active {
  color: var(--accent-color);
}


.header .navmenu .btn-demo {
  background-color: #3db186;
  color: white;
  padding: 8px 20px; 
  border-radius: 16px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.header .navmenu .btn-demo:hover {
  background-color: #138058;
  color: #fff;
}

.header .navmenu a:hover,
.header .navmenu .active {
  color: var(--accent-color);
}

/* Ajustes responsivos para garantir que tudo caiba no layout */
@media (max-width: 1200px) {
  .header .logo h1 {
    font-size: 22px;
  }

  .header .navmenu ul li {
    margin-left: 10px;
  }

  .header .navmenu a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .header .navmenu .btn-demo {
    padding: 6px 16px;
  }
}


.banner {
  position: relative;
  height: calc(100vh - 70px); /* Ajusta a altura da banner para ficar abaixo do header */
  overflow: hidden;
  background-image: url('/public/assets/img/banner.PNG');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  margin-top: 70px; /* Adiciona espaço para não ficar atrás do header */
  color:#fff;
}

/* Escurecimento da imagem */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Escurecimento de 50% */
  z-index: 1;
}

.banner h1 {
  position: relative;
  z-index: 2; 
  font-size: 60px; 
  font-weight: bold;
  color:#fff;
}


.btn {
    padding: 10px 20px;
    font-size: 1rem;
    margin: 10px; 
}

/* Estilo base do carousel */
.carousel-caption {
  top: 50%;  
  transform: translateY(-50%); 
  color: #fff;
  bottom: auto; 
  left: 50%; 
  transform: translate(-50%, -50%);
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.carousel-caption h2 span {
  color: #3db186;
}

.carousel-caption p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff;
}


.carousel-caption p{
  text-align: center;
}

.carousel-item::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5); 
}

/* Estilo dos buttons */
.btn {
  padding: 10px 20px;
  font-size: 1rem;
  margin: 10px;
  transition: background-color 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #3db186; 
  color: #fff;
}

.btn-primary {
  background-color: #3db186; 
  border-color: #3db186;
  color: #fff;
}

.btn-primary:hover {
  background-color: #ff3500; 
  border-color: #ff3500;
  color: #fff;
}




    /* about us */

    #about-us h3 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #333;
    }
    
    #about-us p, #about-us ul {
        font-size: 1rem;
        color: #666;
    }
    
    #about-us ul li {
        padding-bottom: 10px;
    }
    

    /* Functionalities Section Styles */
    .functionalities .functionality-card {
      background-color: var(--surface-color);
      box-shadow: 0px 5px 20px rgba(0, 0, 255, 0.15);
      /* Sombra azul com baixa opacidade */
      padding: 40px;
      border-radius: 15px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      position: relative;
      overflow: hidden;
    }

    .functionalities .functionality-card .icon {
      color: #fff;
      background: #3db186;
      font-size: 50px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: background-color 0.3s ease;
    }

    .functionalities .functionality-card h3 {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 15px;
      transition: color 0.3s ease;
    }

    .functionalities .functionality-card p {
      font-size: 14px;
      line-height: 1.6;
      color: #666;
      text-align: center;
    }

    .functionalities .functionality-card:hover {
      transform: translateY(-10px);
      box-shadow: 0px 10px 30px rgba(0, 0, 255, 0.40);
      /* Sombra azul mais forte no hover */
    }

    .functionalities .functionality-card:hover .icon {
      background-color: #FF5722;

    }

    .functionalities .functionality-card:hover h3 {
      color: #3db186;

    }

    /* Media Query for larger screens */
    @media (min-width: 1365px) {
      .functionalities .functionality-card:hover {
        transform: scale(1.05);
      }
    }




  /* Business Card Section Styles */
.business-card {
    background-color: #f8f9fa;
    padding: 60px 0;
  }
  
  .business-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  
  .business-card-item:hover {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .business-card .card-content {
    max-width: 60%;
  }
  
  .business-card .card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
  }
  
  .business-card .card-content .role {
    font-size: 18px;
    color: #888;
    margin-bottom: 20px;
  }
  
  .business-card .card-content .contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .business-card .card-content .contact-info p i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--accent-color);
  }
  
  .business-card .card-logo img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
  }
  
  @media (max-width: 768px) {
    .business-card-item {
      flex-direction: column;
      text-align: center;
    }
  
    .business-card .card-content {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .business-card .card-logo img {
      max-width: 100px;
    }
  }

  /* beneficios */

  /* Benefícios Section */
.benefits {
  padding: 60px 0;
  /* background-color: #f0f0f0;  */
}

.benefits .benefit-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 255, 0.1);
  transition: all 0.3s ease-in-out;
}

.benefits .benefit-item h4 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.benefits .benefit-item p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.benefits .benefit-item:hover {
  box-shadow: 0px 6px 20px rgba(0, 0, 255, 0.2);
}


/* Estilos para a seção de Nossos Clientes */
.clientes {
  padding: 60px 0;
}

.clientes h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.clientes p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 40px;
}

/* Carrossel de Imagens */
.clientes-carousel {
  overflow: hidden;   
  position: relative;
  display: flex;
  justify-content: center;
}

.clientes-images {
  display: flex;
  justify-content: flex-start; 
  animation: scrollClientes 20s linear infinite;  
  gap: 50px; 
}

.clientes-images img {
  height: 80px;
  transition: transform 0.3s ease-in-out;
}

.clientes-images img:hover {
  transform: scale(1.1); 
}

/* Animacao para rolar as imagens */
@keyframes scrollClientes {
  0% {
    transform: translateX(0);  
  }
  100% {
    transform: translateX(calc(-100% + 100vw)); 
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .clientes-images img {
    height: 60px; 
  }
}



/* Styling for Demonstration Request Section */
.demo {
  padding: 60px 0;
  background: #f7f9fc;
}

.demo .section-title h2 {
  font-size: 32px;
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.demo .description-title {
  color: #3db186;
  font-weight: 600;
  font-size: 18px;
}

.demo .php-email-form {
  background: white;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.demo .php-email-form label {
  font-size: 14px; 
  color: #3db186; 
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 1.4px;
  display: inline-block;
}

.demo .php-email-form input, 
.demo .php-email-form select, 
.demo .php-email-form textarea {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.demo .php-email-form input:focus, 
.demo .php-email-form select:focus, 
.demo .php-email-form textarea:focus {
  border-color: #3db186;
  outline: none;
}

.demo .php-email-form button[type=submit] {
  background: #3db186;
  border: none;
  padding: 12px 30px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.demo .php-email-form button[type=submit]:hover {
  background: #ff3500;
  width: 100%;
}

.demo .loading, 
.demo .error-message, 
.demo .sent-message {
  display: none;
  font-size: 14px;
  margin-top: 15px;
}

.demo .loading {
  color: #ff5828;
}

.demo .error-message {
  color: red;
}

.demo .sent-message {
  color: green;
}


/* cor logo */
.sitename{
  color: #f8f9fa;
}