/* Custom Header Styles - Aitech */

/* Trocar cores: branco para logo, azul para o outro lado */
.tp-header-logo-bg {
  background: #ffffff !important;
  /* Branco para o logo */
}

.tp-header-wrapper-inner {
  background: var(--tp-gradient-primary) !important;
  /* Azul para o outro lado */
}

.tp-header-box {
  background: var(--tp-gradient-primary);
  /* Fundo azul geral */
}

/* Garantir que o logo seja visível no fundo branco */
.tp-header-logo img {
  filter: none !important;
  opacity: 1 !important;
}

/* Ajustar cores de texto e ícones no header azul */
.tp-header-wrapper-inner .tp-header-top-info a {
  color: #ffffff !important;
  /* Texto branco no fundo azul */
}

.tp-header-wrapper-inner .tp-header-top-info a span {
  background: #ffffff !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-fill-color: transparent !important;
}

.tp-header-wrapper-inner .tp-header-top-right .header-social a {
  color: #ffffff !important;
  /* Ícones brancos no fundo azul */
}

.tp-header-wrapper-inner .tp-header-top-right .header-social a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  /* Hover mais claro */
}

/* Menu principal no header azul */
.tp-header-wrapper-inner .tp-main-menu ul li a {
  color: #ffffff !important;
  /* Texto branco no menu */
}

.tp-header-wrapper-inner .tp-main-menu ul li a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Contato no header azul */
.tp-header-wrapper-inner .tp-header-contact-content p,
.tp-header-wrapper-inner .tp-header-contact-content span a {
  color: #ffffff !important;
}

.tp-header-wrapper-inner .tp-header-contact-icon span {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.tp-header-wrapper-inner .tp-header-contact-search span {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* Premium Header Button */
.tp-header-btn .tp-btn {
  background: #035E7D !important;
  color: #ffffff !important;
  border-radius: 30px !important;
  /* Pill shape */
  font-weight: 700;
  padding: 10px 30px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  /* Soft shadow */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none !important;
}

.tp-header-btn .tp-btn:hover {
  background: #024d66 !important;
  transform: translateY(-3px);
  /* Lift effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  /* Expanded shadow */
  color: #ffffff !important;
  /* Slightly distinct hover color */
}

.tp-header-btn .tp-btn i {
  transition: transform 0.3s ease;
}

.tp-header-btn .tp-btn:hover i {
  transform: translateX(4px);
  /* Arrow movement */
}

/* Premium Modern Bullet Points */
.tp-about-list-grid ul {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

.tp-about-list-grid ul li {
  display: flex !important;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  /* Bolder text */
  color: var(--tp-heading-primary);
  background: transparent !important;
  padding: 5px 0 !important;
  border: none !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  transition: all 0.3s ease;
}

.tp-about-list-grid ul li:hover {
  transform: translateX(5px);
  /* Subtle slide right */
}

.tp-about-list-grid ul li span {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--tp-gradient-primary);
  /* Gradient Background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 172, 204, 0.3);
  /* Colored shadow */
  transition: all 0.3s ease;
}

.tp-about-list-grid ul li:hover span {
  transform: scale(1.1);
  /* Gentle pulse */
  box-shadow: 0 6px 15px rgba(0, 172, 204, 0.4);
}

/* Mobile responsive */
@media (max-width: 575px) {
  .tp-about-list-grid ul {
    grid-template-columns: 1fr;
  }
}

/* Service Detail List (Carousel) */
.tp-service-detail-list {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
  margin-top: 10px;
  font-size: 14px;
  color: var(--tp-text-body);
}

.tp-service-detail-list li {
  margin-bottom: 5px;
}

/* Garantir altura consistente dos cards de serviços */
.tp-service-item-wrapper {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 500px !important;
}

.tp-service-item-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  padding-bottom: 10px !important;
}

.tp-service-item-content p {
  flex: 1 !important;
  margin-bottom: 0 !important;
}

.tp-service-item-thumb {
  flex-shrink: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 35px !important;
}

.tp-service-item-thumb img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}