.portfolio {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.section-header {
  position: relative;
  z-index: 1;
}

.section-meta {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.section-description {
  color: #6c757d;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.portfolio-item {
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: #fff;
}

.portfolio-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.portfolio-wrap:hover img {
  transform: scale(1.05);
}

.portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-info h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.portfolio-wrap:hover .portfolio-info h4,
.portfolio-wrap:hover .portfolio-info p {
  transform: translateY(0);
}

.portfolio-links {
  display: flex;
  gap: 10px;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.portfolio-wrap:hover .portfolio-links {
  transform: translateY(0);
}

.portfolio-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease-in-out;
}

.portfolio-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .portfolio-wrap img {
    height: 250px;
  }
  
  .portfolio-info h4 {
    font-size: 18px;
  }
  
  .portfolio-info p {
    font-size: 12px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* Estilos para as palavras-chave no carrossel */
.clients .keyword {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 30px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  min-width: 150px;
}

.clients .keyword:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.clients .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

@media (max-width: 768px) {
  .clients .keyword {
    font-size: 14px;
    padding: 8px 16px;
    min-width: 120px;
  }
}

/* Estilos para a seção de serviços */
.services {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.service-item {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: rotateY(180deg);
}

.service-icon i {
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  padding-bottom: 0.5rem;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
  transition: all 0.3s ease;
}

.service-item:hover .service-title::after {
  width: 100px;
}

.service-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #495057;
  font-size: 0.95rem;
}

.service-features li i {
  color: #4158D0;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.service-link {
  color: #4158D0;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #C850C0;
}

.service-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .service-item {
    padding: 2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-title {
    font-size: 1.25rem;
  }
}

/* Estilos para o botão do WhatsApp */
.btn-success {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-success:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-success i {
  font-size: 1.2em;
  vertical-align: middle;
}

/* Estilos para os ícones da seção Sobre */
.about-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon i {
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.feature-item span {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

@media (max-width: 768px) {
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
  
  .feature-item span {
    font-size: 14px;
  }
}

/* Estilos para o rodapé simplificado */
.footer {
  background: linear-gradient(135deg, #4158D0 0%, #2c3e50 100%);
  padding: 2rem 0;
  text-align: center;
}

.footer .social-links {
  margin-bottom: 1rem;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer .social-links a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer .social-links a.whatsapp {
  background: #25D366;
}

.footer .social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer .copyright strong {
  color: #fff;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 64px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.whatsapp-float i {
  transition: all 0.3s ease;
}

.whatsapp-float:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 54px;
    right: 20px;
  }
}

/* Estilos para o carrossel de serviços mobile */
.services-swiper {
  padding: 20px 0 40px;
  overflow: hidden;
  position: relative;
}

.services-swiper .swiper-wrapper {
  display: flex;
  transition-timing-function: ease-out;
}

.services-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
  width: 100%;
}

.services-swiper .service-item {
  margin: 0;
  height: 100%;
}

.services-swiper .swiper-pagination {
  bottom: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.services-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #4158D0;
  opacity: 0.5;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: linear-gradient(135deg, #4158D0 0%, #C850C0 100%);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .services-swiper .service-item {
    padding: 1.5rem;
  }
  
  .services-swiper .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .services-swiper .service-icon i {
    font-size: 1.25rem;
  }
  
  .services-swiper .service-title {
    font-size: 1.2rem;
  }
  
  .services-swiper .service-description {
    font-size: 0.9rem;
  }
  
  .services-swiper .service-features li {
    font-size: 0.85rem;
  }
}

/* Estilo para o nome Technix */
.sitename {
  color: #4158D0;
  font-weight: 700;
  margin: 0;
  font-size: 1.8rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, #4158D0 0%, #2c3e50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Estilos para os ícones de tecnologia */
.customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.customers-badge .customer-avatars i {
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #4158D0 0%, #2c3e50 100%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(65, 88, 208, 0.2);
}

.customers-badge .customer-avatars i:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(65, 88, 208, 0.3);
}

.customers-badge .customer-avatars .more {
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #4158D0 0%, #2c3e50 100%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(65, 88, 208, 0.2);
}

.customers-badge p {
  color: #6c757d;
  font-size: 0.95rem;
  max-width: 300px;
  margin: 15px auto 0;
}

@media (max-width: 768px) {
  .customers-badge .customer-avatars i,
  .customers-badge .customer-avatars .more {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
} 