@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

.light {
  background-color: #75a6ce; /* tom de azul claro */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.dark {
  background-color: #0a0f1a; /* azul quase preto */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  opacity: 0.8;
}

header.header .navbar-nav .nav-link {
  color: white !important;
}

header.header {
  background-color: #0a0f1a; /* Azul quase preto */
  opacity: 0.8; /* Transparência */
}

#index {
  background-image: url("../img/bg-index.jpeg");
  background-size: cover;
  background-position: left center;
  width: 100%;
  height: 200px;
}

bg-claro {
  background-image: url("../img/bg-claro.jpeg");
  background-size: cover;
  background-position: left center;
  width: 100%;
  height: 200px;
}

bg-escuro {
  background-image: url("../img/bg-escuro.jpeg");
  background-size: cover;
  background-position: left center;
  width: 100%;
  height: 200px;
}

#index button {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
  cursor: pointer;
  text-align: left !important;
  display: inline-block;
}

#index button:hover {
  background-color: darkorange;
}

section {
  min-height: 100vh; /* Define o tamanho mínimo de cada seção para ocupar toda a altura da tela */
  display: flex;
  align-items: center;
  justify-content: center;
}

section:nth-of-type(odd) {
  background-image: url("../img/bg-escuro.jpeg");
  background-size: cover;
  background-position: left center;
  color: white;
}

section:nth-of-type(even) {
  background-image: url("../img/bg-claro.jpeg");
  background-size: cover;
  background-position: left center;
}

/* Classe para alinhar texto à esquerda e limitar em duas colunas */
.text-two-columns {
  text-align: left;
  column-count: 2;
  column-gap: 20px; /* Espaçamento entre as colunas */
  color: white;
}

/* Classe para alinhar texto à esquerda e limitar em duas colunas */
.text-one-columns {
  text-align: left;
  column-count: 2;
  column-gap: 10px;
  /* Espaçamento entre as colunas */
  color: white;
}


/* Estilo para as logos dos clientes */
#clientes .col-md-4 img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 80px;
  padding: 10px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#clientes .col-md-4 img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Estilo para links na seção de clientes */
#clientes a {
  color: white !important;
  text-decoration: none;
}

#clientes a:hover {
  color: #f0f0f0 !important;
  text-decoration: underline;
}

/* Botão do WhatsApp */
.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white !important;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  color: white !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 1.2em;
}

/* CSS do mobile*/
@media (max-width: 768px) {
  .navbar-toggler {
    background-color: whitesmoke; /* Fundo branco para melhor contraste */
  }

  header.header {
    color: black; /* Define a cor da fonte como preta no mobile */
  }

  #index {
    background-position: center center; /* Centraliza a imagem no mobile */
    background-attachment: scroll; /* Remove fixed attachment que causa problemas no mobile */
    min-height: 60vh; /* Altura mínima responsiva */
    height: auto; /* Altura automática para mobile */
  }

  .text-two-columns {
    column-count: 1; /* Uma coluna no mobile */
    text-align: center; /* Centraliza o texto no mobile */
  }
}