/* ===== ESTILOS GERAIS ===== */
.site-mobile-menu {
  /* seus estilos existentes para mobile menu */
}

.site-nav {
  /* seus estilos existentes para navegação */
}

/* ===== ESTILOS DO HERÓI ===== */
.untree_co-hero {
  position: relative;
  background-size: cover;
  background-position: center;
}

.untree_co-hero .heading {
  font-size: 3.5rem;
  font-weight: 700;
}

.untree_co-hero .desc {
  font-size: 1.2rem;
}

/* ===== ESTILOS DA SEÇÃO DE SERVIÇOS ===== */
.services-section {
  padding: 100px 0;
}

.ul-check li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  min-height: 70px;
}

.li-text {
  flex: 1;
  margin: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  min-height: 100%;
}

.ul-check li:hover {
  background: white;
  border-color: #e2e8f0;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.animated-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float-icon 3s ease-in-out infinite;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.animated-icon i {
  font-size: 1.25rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  line-height: 1;
}

.animated-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
  animation: rotate-border 4s linear infinite;
}

.animated-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  border-radius: 12px;
  animation: shine 2s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-5px) rotate(2deg); 
  }
}

@keyframes rotate-border {
  0% { 
    transform: rotate(0deg); 
    opacity: 0.3;
  }
  50% { 
    opacity: 0.1;
  }
  100% { 
    transform: rotate(360deg); 
    opacity: 0.3;
  }
}

@keyframes shine {
  0%, 100% { 
    opacity: 0; 
  }
  50% { 
    opacity: 1; 
  }
}

/* Animações diferentes para cada ícone */
.ul-check li:nth-child(1) .animated-icon {
  animation-delay: 0s;
}

.ul-check li:nth-child(2) .animated-icon {
  animation-delay: 0.5s;
}

.ul-check li:nth-child(3) .animated-icon {
  animation-delay: 1s;
}

/* Efeito de rotação específico para o sync */
.ul-check li:nth-child(2) .animated-icon i {
  animation: spin-slow 4s linear infinite;
  transform: translate(-50%, -50%) rotate(0deg);
}

@keyframes spin-slow {
  0% { 
    transform: translate(-50%, -50%) rotate(0deg); 
  }
  100% { 
    transform: translate(-50%, -50%) rotate(360deg); 
  }
}

/* ===== ESTILOS DOS ÍCONES FLUTUANTES ===== */
.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.floating-icon i {
  font-size: 1.25rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-1 {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.icon-2 {
  top: 50%;
  left: -20px;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 20%;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-10px) rotate(5deg); 
  }
}

.img-wrap-2 {
  position: relative;
}

/* ===== ESTILOS DA SEÇÃO DE FEATURES MODERNAS ===== */
.features-modern-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.features-modern-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.mb-6 {
  margin-bottom: 4rem !important;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.feature-modern-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.feature-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-color: #e2e8f0;
}

.feature-modern-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.feature-modern-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
  font-size: 2rem;
  color: white;
}

.feature-modern-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-modern-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* ===== ESTILOS DO FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.site-footer .social-links a {
  transition: opacity 0.3s ease;
}

.site-footer .social-links a:hover {
  opacity: 0.8;
}

.site-footer .opacity-90 {
  opacity: 0.9;
}

.site-footer .hover-opacity-100:hover {
  opacity: 1;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  /* Serviços */
  .animated-icon {
    width: 45px;
    height: 45px;
  }
  
  .animated-icon i {
    font-size: 1.1rem;
  }
  
  .ul-check li {
    padding: 0.875rem;
    gap: 0.875rem;
    min-height: 65px;
  }
  
  .li-text {
    font-size: 0.95rem;
  }
  
  /* Ícones flutuantes */
  .floating-icon {
    width: 40px;
    height: 40px;
  }
  
  .floating-icon i {
    font-size: 1rem;
  }
  
  .icon-1 {
    right: -15px;
  }
  
  .icon-2 {
    left: -15px;
  }
  
  .icon-3 {
    right: -15px;
  }
  
  /* Features */
  .features-modern-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-modern-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon-wrapper i {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  /* Hero */
  .untree_co-hero .heading {
    font-size: 2.5rem;
  }
  
  .untree_co-hero .desc {
    font-size: 1rem;
  }
  
  /* Features */
  .section-title {
    font-size: 1.75rem;
  }
  
  .mb-6 {
    margin-bottom: 3rem !important;
  }
  
  .feature-modern-card {
    padding: 1.5rem;
  }
  
  /* Ícones flutuantes */
  .floating-icon {
    display: none;
  }
}