/* Arquivo: solution.css */

/* Definição de variáveis para cores e fontes */
:root {
  --primary-color: #ff0000;
  --secondary-color: #333333;
  --text-color: #666666;
  --light-bg-color: #ffffff;
  --dark-bg-color: #f8f9fa;
  --dark-text-color: #ffffff;
}

/* Estilos gerais do corpo da página */
body {
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

/* Estilos para as seções */
.section {
  padding: 80px 0;
}

/* Estilos para fundos claros e escuros */
.light-background {
  background-color: var(--light-bg-color);
}

.dark-background {
  color: var(--dark-text-color);
}

/* Estilos para o container */
.container {
  padding: 4%;
}

/* Estilos para o wrapper de imagens */
.image-wrapper {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Efeito de hover para imagens */
.hover-effect {
  transition: transform 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.image-wrapper:hover .hover-effect {
  transform: scale(1.05);
}

/* Estilos para o conteúdo de texto */
.content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.content h4 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.content li {
  font-size: 1rem;
  margin-bottom: 8px;
  list-style-type: none;
  position: relative;
}

.content li i {
  color: var(--primary-color);
  position: absolute;
  left: -20px;
  top: 4px;
}

/* Estilos para botões personalizados */
.btn-custom {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

/* Hover para botões em seções light */
.light-background .btn-custom:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* Hover para botões em seções dark */
.dark-background .btn-custom:hover {
  background-color: darken(var(--primary-color), 10%);
}

/* Estilos para seções com fundo escuro */
.dark-background h2,
.dark-background h3,
.dark-background h4,
.dark-background p,
.dark-background li {
  color: var(--dark-text-color);
}

/* Container para os botões de CTA */
.cta-container {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}

/* Estilos para o botão principal "Explore Nossas Soluções" */
.btn-explore {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #d10000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}

.btn-explore span {
  color: #ffffff;
}

.btn-explore i {
  color: #ffffff;
  margin-left: 8px;
}

.btn-explore:hover {
  background-color: #ff0000;
  box-shadow: 0 6px 12px rgba(209, 0, 0, 0.3);
  transform: translateY(-3px);
}

.btn-explore:focus {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* Estilos para o botão secundário */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary i {
  margin-right: 8px;
}

/* Media queries para responsividade */
@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }

  .title-light h2,
  .title-dark h2 {
    font-size: 2rem;
  }

  .content h3 {
    font-size: 1.6rem;
  }

  .content h4 {
    font-size: 1.3rem;
  }

  .content li {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 400px;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .image-wrapper {
    margin-bottom: 30px;
  }

  .content {
    text-align: center;
  }

  .content ul {
    text-align: left;
  }

  .hero {
    min-height: 300px;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .cta-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-explore,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  #chat-container {
    width: 300px;
    height: 450px;
  }
}

/* Estilos para o efeito parallax */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Altura extra para permitir o movimento parallax */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.hero {
  position: relative;
  z-index: 1;
}

/* Ajuste os estilos existentes do hero se necessário */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Estilo para texto em modais */
.texto-modal {
  color: #cccccc;
}
