@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

header {
  background-color: black;
  color: white;
}

header h1 {
  color: white;
  font-family: "Oswald", sans-serif;
}

.navbar-toggler {
  color: white !important;
  border-color: white !important;
}

.navbar-toggler-icon {
  margin: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: white !important;
  font-family: "Roboto", sans-serif;
}

.link-hover {
  transition: 0.2s;
}

.link-hover:hover {
  color: #c1272c !important;
  margin-left: 5px;
  margin-right: 5px;
}

/* Estilo para o menu aberto */
.menu-aberto {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Transição suave */
.navbar-collapse {
  transition: all 0.3s ease;
}

/* Estilo para links quando clicados */
#navbarCollapse .nav-link:active {
  transform: scale(0.98);
}

#home {
  width: 100%;
  background: black;
  margin-top: 0;
}

#espacoDoCliente{
  background-color: black;
}

.inicio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* Espaço entre texto e imagem */
  padding: 1rem;
  flex-wrap: wrap;
  /* para responsividade */
  background-color: black;
}

.inicio .texto {
  flex: 1;
  font-size: 16px;
  color: white;
}

.inicio img {
  width: 90%;
  height: auto;
  border-radius: 8px;
}


.info {
  color: #ffffff;
  font-family: "Bitter", serif;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}

.subtitulo {
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #403e3b;
  margin-top: 10px;
}

.texto {
  color: #403e3b;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}

#espacoDoCliente {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white !important;
  padding: 12px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.05);
}

.plano-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plano-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Estilos personalizados */
#sustentabilidade .card {
  transition: all 0.3s ease;
}

#sustentabilidade .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(46, 213, 115, 0.3);
}

.border-success {
  border-color: #28a745 !important;
  border-width: 2px !important;
}

#sustentabilidade .lead {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
}

#sustentabilidade .card-body {
  font-family: "Roboto", sans-serif;
  color: white;
}

.text-white {
  color: white;
}

#sustentabilidade h2,
#sustentabilidade h3,
#sustentabilidade h4 {
  font-family: "Oswald", sans-serif;
  color: white;
}

/* Estilos personalizados */
footer a {
  transition: color 0.3s;
}

footer a:hover {
  color: #c1272c !important;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: #c1272c;
  transform: translateY(-3px);
}

footer .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
}

footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.faq-card {
  perspective: 1000px;
  height: 220px;
}

.faq-title{
  font-family: "Oswald", sans-serif;
  color: #c1272c;
}

.faq-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.faq-card:hover .faq-card-inner {
  transform: rotateY(180deg);
}

.faq-card-front, .faq-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #adadad;
  box-shadow: 0 4px 10px #2a2a2a;
}

.faq-card-front h5 {
  font-weight: bold;
  font-size: 1.1rem;
}

.faq-card-back {
  background-color: #d1e7dd;
  color: #0f5132;
  transform: rotateY(180deg);
}


@media (min-width: 768px) {
  .info {
    font-size: 26px;
    margin-top: 20px;
  }

  .texto {
    font-size: 36px;
    margin-top: 20px;
  }

  .inicio img {
    width: 40%;
  }

  .inicio .texto{
    font-size: 24px;
  }

  #espacoDoCliente{
    padding: 50px;
  }

  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white !important;
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.05);
  }

  .plano-destaque {
    margin: 0;
  }

  .card-header {
    border-radius: 10px 10px 0 0 !important;
  }

  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
  }
}