/* Variáveis de Cores */
:root {
  --primary-color: #0197A8;
  --primary-dark: #007A87;
  --primary-light: #D1F1F4;
  --accent-color: #06D6A0;
  --text-dark: #1B262C;
  --text-light: #778899;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #E9ECEF;
  --dark-gray: #495057;
  --black: #000000;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.12);

  /* Variáveis para o tema escuro */
  --dark-bg: #1a1a1a;
  --dark-card-bg: #2d2d2d;
  --dark-border: #444;
  --dark-text: #e4e4e4;
  --dark-text-secondary: #aaa;
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Estilos Gerais */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--white);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Estilos para o tema escuro */
body.dark-theme {
  background-color: var(--dark-bg);
  color: var(--dark-text);
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
  color: var(--dark-text);
}

body.dark-theme p {
  color: var(--dark-text-secondary);
}

body.dark-theme .navbar {
  background-color: rgba(26, 26, 26, 0.98);
  box-shadow: var(--dark-shadow);
}

body.dark-theme .navbar-scrolled {
  background-color: rgba(26, 26, 26, 0.98);
}

body.dark-theme .nav-link {
  color: var(--dark-text);
}

body.dark-theme .description {
  color: var(--dark-text-secondary);
}

body.dark-theme .solution-card,
body.dark-theme .feature-item,
body.dark-theme .stat-item {
  background-color: var(--dark-card-bg);
  box-shadow: var(--dark-shadow);
}

body.dark-theme .solution-card p,
body.dark-theme .feature-content p,
body.dark-theme .stat-item p {
  color: var(--dark-text-secondary);
}

body.dark-theme .footer {
  background-color: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

body.dark-theme .footer h5 {
  color: var(--dark-text);
}

body.dark-theme .footer p,
body.dark-theme .footer-contact li {
  color: var(--dark-text-secondary);
}

body.dark-theme .footer-links a,
body.dark-theme .footer-contact a,
body.dark-theme .footer-bottom-links a {
  color: var(--dark-text-secondary);
}

body.dark-theme .footer-links a:hover,
body.dark-theme .footer-contact a:hover,
body.dark-theme .footer-bottom-links a:hover {
  color: var(--primary-color);
}

body.dark-theme hr {
  border-color: var(--dark-border);
}

body.dark-theme .form-control {
  background-color: var(--dark-card-bg);
  border-color: var(--dark-border);
  color: var(--dark-text);
}

body.dark-theme .form-control::placeholder {
  color: var(--dark-text-secondary);
}

/* Botão de alternância de tema */
.theme-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  width: 36px;
  height: 36px;
}

body.dark-theme .theme-toggle-btn {
  color: var(--dark-text);
}

.theme-toggle-btn:hover {
  transform: rotate(15deg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

img {
  max-width: 100%;
}

section {
  padding: 80px 0;
  position: relative;
}

html,
body {
  overflow-x: hidden;
  /* Impede a rolagem horizontal */

}




/* Hero Section */
.hero-section {
  position: relative;
  margin-top: 76px;
}

.carousel-inner {
  border-radius: 0;
  overflow: hidden;
}

.carousel-item {
  height: 80vh;
  min-height: 600px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(0.7);
}

.carousel-caption {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  z-index: 2;
  overflow: hidden;
}

.carousel-caption h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  text-align: center;
}

.carousel-caption h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  text-align: center;
}

.carousel-caption p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}

.carousel-indicators {
  margin-bottom: 30px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--white);
  width: 30px;
  border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
}
/* About Section */
.about-section {
  background-color: var(--light-gray);
  padding: 100px 0;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 600px;
}

.image-stack__item {
  position: absolute;
  width: 80%;
  height: auto;
  overflow: hidden;
  transition: all 0.5s ease;
}

.image-stack__item--bottom {
  bottom: 0;
  left: 0;
  z-index: 1;
}

.image-stack__item--top {
  top: 0;
  right: 0;
  z-index: 2;
}

.image-stack__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.image-stack:hover .image-stack__item--bottom {
  transform: translateX(-10px) translateY(10px);
}

.image-stack:hover .image-stack__item--top {
  transform: translateX(10px) translateY(-10px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  background-color: var(--white);
  padding: 80px 0;
}

.stats-counter {
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  background-color: var(--light-gray);
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  background-color: var(--white);
}

.stat-number {
  font-size: 44px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number span {
  display: inline-block;
}

.stat-item p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 0;
  font-weight: 500;
}

/* Solutions Section */
.solutions-section {
  background-color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.solutions-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(1, 151, 168, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.solution-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.solution-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.solution-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--primary-color);
}

.solution-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.solution-card p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.solution-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.solution-features li i {
  color: var(--accent-color);
  font-size: 18px;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
}

.cta-inner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.cta-inner h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 0;
}




/* Container das imagens */
.side-images {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 10px;
}

/* Estilo das imagens */
.side-images img {
  width: 100%;
  height: 200px;
  /* Altura fixa */
  object-fit: cover;
  /* Mantém proporção sem distorção */
  /* Cantos arredondados */
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Efeito ao passar o mouse */
.side-images img:hover {
  transform: scale(1.05);
  /* Leve zoom */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  /* Sombra para destacar */
}

/* Responsividade: Ajusta a altura das imagens em telas pequenas */
@media (max-width: 768px) {
  .side-images img {
    height: 150px;
  }
}

/* Remove a seta padrão do Bootstrap */
.accordion-button::after {
  display: none !important;
}

/* Adiciona um ícone de seta manualmente */
.accordion-button {
  position: relative;
}

/* Ícone de seta manual */
.accordion-button::before {
  content: '\25BC';
  /* Seta para baixo */
  position: absolute;
  right: 20px;
  /* Ajusta a posição da seta */
  font-size: 12px;
  transition: transform 0.3s;
}

/* Quando o botão estiver ativo, gira a seta */
.accordion-button:not(.collapsed)::before {
  transform: rotate(180deg);
}



/* Efeito hover nos botões do SVG */


.svg-button {
  cursor: pointer;
  transform-origin: center;
}



/* FAQ */
.accordion-button {
  font-weight: bold;
  text-transform: uppercase;
}

.accordion-body {
  font-size: 0.9rem;
  line-height: 1.5;
  background: #f8f9fa;
  border-radius: 8px;
}




.trabalhe-conosco {
  position: relative;
  background: linear-gradient(180deg, #0197A8, #031C2E);
  padding: 30px 10px;
  text-align: center;
  color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-top: 50px;
  animation: gradientMove 6s infinite alternate;
}


.trabalhe-conosco h2 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: var(--white);

}

.trabalhe-conosco p {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.9;
}

 

/* Botão estilizado */
.trabalhe-conosco .btn-trabalhe {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  color: rgb(0, 0, 0);
  background: #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(255, 75, 43, 0.3);
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho no botão */
.trabalhe-conosco .btn-trabalhe::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s;
}

.trabalhe-conosco .btn-trabalhe:hover {
  background: #a0a0a0;
  box-shadow: 0 8px 20px rgba(255, 75, 43, 0.4);
}

.trabalhe-conosco .btn-trabalhe:hover::after {
  left: 100%;
}










/* FOOTER */
.footer {
  position: relative;
  background: url('../img/wavwe_.png') no-repeat top center;
  background-size: cover;
  aspect-ratio: 1365 / 768;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--white);
  z-index: 1;
  overflow: hidden;
  padding-bottom: 100px;
  /* ↓ Ajuste este valor para subir mais ou menos */
}


.footer>.container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
}

.footer>.container {
  transform: translateY(-20px);
  /* ↓ Ajuste fino para subir conteúdo */
}


/* 🔹 Overlay opcional para contraste */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}



.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand .logo {
  width: 40px;
  height: auto;
}

.footer-brand .brand-text {
  color: var(--white);
  font-size: 24px;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact li i {
  color: var(--primary-color);
}

.newsletter-form .input-group {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  padding: 5px;
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--white);
  padding-left: 15px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  box-shadow: none;
}

.newsletter-form .btn {
  border-radius: 50px;
  padding: 8px 20px;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-bottom-links li a:hover {
  color: var(--white);
}

/* Animações e responsividade */


@media (max-width: 991.98px) {
  section {
    padding: 60px 0;
  }

  .navbar-collapse {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    margin-top: 15px;
  }

  .nav-item {
    margin: 5px 0;
  }


}

@media (max-width: 767.98px) {


  .title {
    font-size: 28px;
  }

  .image-stack {
    height: 350px;
  }

  .stat-item {
    margin-bottom: 20px;
  }

  .cta-inner {
    text-align: center;
  }

  .footer {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}




/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.fade-in-up {
  animation: fadeInUp 1s ease-in-out;
}

