/* ===============================
   Seção de Serviços – Ajustes Gerais
   =============================== */
.about {
  padding: 3rem 0;
}

/* Centralizar a imagem e limitar o tamanho */
.about-img img {
  max-width: 250px;
  display: block;
  margin: 0 auto 10px auto;
}

.about-text {
  text-align: center;
}

.about-text .title {
    margin-top: 1rem; /* ajuste o valor conforme necessário */
}

.about-text h1.title {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ===============================
   Dropdown Containers
   =============================== */
.dropdown-container {
  margin-bottom: 0.0rem;
}

.dropdown-container .box {
  padding: 0.6rem 0.8rem !important;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.9rem;
}

.dropdown-container .box:hover {
  background: #f9f9f9;
}

.dropdown-container .box .d-flex {
  width: 100%;
}

.dropdown-container .box i {
  font-size: 0.95rem;
}

.dropdown-container .box h5 {
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
}

/* ===============================
   Estilos Gerais dos Boxes
   =============================== */
h1.title i {
  color: var(--brand-color);
}

.box {
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 10px;
  position: relative;
  margin-bottom: 0.5rem; /* Reduzi o espaçamento entre as boxes */
}

/* Efeito de Hover */
.box-hover:hover {
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Box Ativo */
.box.active {
  background-color: rgba(33, 150, 243) !important;
  box-shadow: 0 4px 6px rgba(33, 150, 243, 0.2) !important;
}

/* Ícones e Títulos em Hover e Quando Ativo */
.box-hover:hover h5,
.box-hover:hover i,
.box.active h5,
.box.active i {
  color: #fff;
}

/* Texto da Descrição quando Ativo */
.box.active .dropdown-content {
  color: #fff;
}

/* ===============================
   Ícone de Rotação
   =============================== */
.rotate-icon {
  transition: transform 0.3s;
  font-size: 15px !important;
}

.rotate-icon.rotated {
  transform: rotate(180deg);
}

/* ===============================
   Dropdown Content (Descrição Oculta)
   =============================== */
.dropdown-content {
  margin-top: 0;
  font-size: 0.9rem;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  padding-top: 0;
  word-wrap: break-word;
  text-align: left;
  border-top: 1px solid transparent; /* Mantém invisível quando fechado */
  opacity: 0;
}

/* Quando o Dropdown está Aberto */
.dropdown-content.open {
  max-height: 200px;
  padding-top: 8px;
  opacity: 1;
  border-top: 1px solid #e0e0e0;
}

/* ===============================
   Estilos para Imagens na Descrição
   =============================== */
.dropdown-content img {
  width: 50px;
  margin-right: 10px;
}

/* distancia das box da descriçao */
.container .py-4 {
    padding-top: 0rem !important;
}
.espaçamento-extra {
  margin-bottom: 2.8rem; /* ajuste o valor conforme necessário */
}
a.blink {
  animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
  0% {
    color: #007BFF;
  }
  50% {
    color: #FF5733;
  }
  100% {
    color: #007BFF;
  }
}
.service-box {
  background-color: var(--boxColor);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


