/*-----------------------------------*\
  #EFEITOS TECNOLÓGICOS PREMIUM - GURUPI TELECOM
\*-----------------------------------*/

/**
* Grid Tecnológico de Fundo
*/
.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(30, 191, 153, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 191, 153, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 50px 50px, 50px 50px; }
}

/**
* Overlay de Gradiente Animado
*/
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(30, 191, 153, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: gradientFloat 15s ease-in-out infinite;
}

@keyframes gradientFloat {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/**
* Texto com Gradiente Animado
*/
.gradient-text {
  background: linear-gradient(135deg, #1ebf99 0%, #0d6efd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  font-weight: 700;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

/**
* Glassmorphism Effect
*/
.glass-effect {
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  position: relative;
  overflow: hidden;
}

/**
* Efeito de Brilho nos Cards
*/
.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  z-index: 1;
}

.portfolio-card:hover .card-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

/**
* Botão com Glow Effect
*/
.glow-btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(30, 191, 153, 0.5);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(30, 191, 153, 0.5); }
  50% { box-shadow: 0 0 30px rgba(30, 191, 153, 0.8), 0 0 40px rgba(30, 191, 153, 0.4); }
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.glow-btn:hover::before {
  width: 300px;
  height: 300px;
}

/**
* Badge Flutuante
*/
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(30, 191, 153, 0.1) 0%, rgba(13, 110, 253, 0.1) 100%);
  border: 1px solid rgba(30, 191, 153, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

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

.hero-badge ion-icon {
  color: #1ebf99;
  font-size: 20px;
}

.hero-badge span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/**
* Stats Cards
*/
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: #1ebf99;
  box-shadow: 0 10px 30px rgba(30, 191, 153, 0.3);
}

.stat-item ion-icon {
  font-size: 36px;
  color: #1ebf99;
}

.stat-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.stat-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/**
* Badges dos Planos
*/
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1ebf99 0%, #0d6efd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 191, 153, 0.4);
  z-index: 10;
  animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.plan-badge ion-icon {
  font-size: 24px;
  color: #fff;
}

/**
* Badge "Mais Popular"
*/
.popular-badge,
.premium-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
  z-index: 10;
  animation: pulse 2s ease-in-out infinite;
}

.premium-badge {
  background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.5);
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

.popular-badge span,
.premium-badge span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popular-badge ion-icon,
.premium-badge ion-icon {
  font-size: 16px;
  color: #fff;
}

/**
* Price Container
*/
.price-container {
  margin: 20px 0;
}

.price-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.price {
  font-size: 36px !important;
  font-weight: 700;
  color: #1ebf99 !important;
  text-shadow: 0 0 20px rgba(30, 191, 153, 0.5);
}

.period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/**
* Card CTA
*/
.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(30, 191, 153, 0.2) 0%, rgba(13, 110, 253, 0.2) 100%);
  border: 2px solid rgba(30, 191, 153, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.portfolio-card:hover .card-cta {
  background: linear-gradient(135deg, #1ebf99 0%, #0d6efd 100%);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(30, 191, 153, 0.6);
}

.card-cta span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-cta ion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .card-cta ion-icon {
  transform: translateX(5px);
}

/**
* Section Badge
*/
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(30, 191, 153, 0.1) 0%, rgba(13, 110, 253, 0.1) 100%);
  border: 1px solid rgba(30, 191, 153, 0.3);
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-badge ion-icon {
  color: #1ebf99;
  font-size: 20px;
}

.section-badge span {
  color: #1ebf99;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

/**
* Botão Outline
*/
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #1ebf99;
  box-shadow: 0 0 20px rgba(30, 191, 153, 0.3);
}

.btn-outline ion-icon {
  transition: transform 0.3s ease;
}

.btn-outline:hover ion-icon {
  transform: translateX(5px);
}

/**
* Animações de Scroll (AOS)
*/
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/**
* Logo do Header - DENTRO DO HEADER
*/
.logo-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo-image {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(30, 191, 153, 0.5));
  transition: all 0.3s ease;
  object-fit: contain;
}

.logo-container:hover .logo-image {
  filter: drop-shadow(0 8px 30px rgba(30, 191, 153, 0.8));
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .logo-image {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .logo-image {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 55px;
  }
}

/**
* Links de Navegação com Ícones
*/
.navbar-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  padding: 8px 12px;
  white-space: nowrap;
}

.navbar-link span {
  display: inline-block;
}

.navbar-link ion-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.navbar-link:hover ion-icon {
  transform: scale(1.2);
}

/* Mobile - Menu responsivo */
@media (max-width: 768px) {
  .navbar-link {
    font-size: 1.5rem;
    padding: 10px 5px;
    width: 100%;
  }
  
  .navbar-link span {
    font-size: 1.5rem;
  }
  
  .navbar-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .navbar-list {
    gap: 15px;
  }
  
  .navbar-link {
    font-size: 1.5rem;
  }
}

/**
* Botão Área do Cliente
*/
.btn-client-area {
  background: linear-gradient(135deg, #1ebf99 0%, #0d6efd 100%);
  padding: 10px 25px !important;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(30, 191, 153, 0.4);
  font-size: 1.4rem !important;
  display: inline-flex !important;
  align-items: center;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}

.btn-client-area:hover {
  box-shadow: 0 6px 25px rgba(30, 191, 153, 0.6);
  transform: translateY(-2px);
}

/* Mobile - Botão Área do Cliente responsivo */
@media (max-width: 768px) {
  .btn-client-area {
    padding: 10px 20px !important;
    font-size: 1.3rem !important;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn-client-area {
    padding: 8px 15px !important;
    font-size: 1.2rem !important;
  }
  
  .btn-client-area ion-icon {
    font-size: 16px !important;
  }
}

/**
* Elementos Flutuantes do Hero
*/
.elem-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1ebf99 0%, #0d6efd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(30, 191, 153, 0.4);
}

.elem-icon ion-icon {
  font-size: 24px;
  color: #fff;
}

/**
* Responsivo
*/
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    justify-content: center;
  }
  
  .price {
    font-size: 24px !important;
  }
  
  .card-content {
    padding: 20px !important;
  }
  
  .plan-badge {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }
  
  .plan-badge ion-icon {
    font-size: 20px;
  }
  
  .card-description {
    font-size: 1.2rem !important;
  }
  
  .card-cta {
    display: flex !important;
    padding: 12px !important;
    font-size: 1.2rem !important;
    margin-top: 15px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .card-cta span {
    font-size: 1.2rem !important;
  }
  
  .card-cta ion-icon {
    font-size: 18px !important;
  }
  
  .popular-badge,
  .premium-badge {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
  
  .popular-badge span,
  .premium-badge span {
    font-size: 0.9rem;
  }
  
  .price-label {
    font-size: 1rem !important;
  }
  
  .price {
    font-size: 28px !important;
  }
  
  .period {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .portfolio-card {
    padding: 50px 10px !important;
    min-height: 200px !important;
  }
  
  .card-content {
    padding: 12px !important;
  }
  
  .card-subtitle, #planos {
    font-size: 1.4rem !important;
    margin-bottom: 5px;
  }
  
  .card-title {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
  }
  
  .price {
    font-size: 22px !important;
  }
  
  .price-label {
    font-size: 0.9rem !important;
  }
  
  .card-description {
    font-size: 1rem !important;
    margin-top: 10px !important;
  }
  
  .card-description ion-icon {
    font-size: 16px !important;
  }
  
  .card-cta {
    display: flex !important;
    padding: 10px 8px !important;
    margin-top: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 1.1rem !important;
  }
  
  .card-cta span {
    font-size: 1.1rem !important;
  }
  
  .card-cta ion-icon {
    font-size: 16px !important;
  }
  
  .plan-badge {
    width: 35px;
    height: 35px;
  }
  
  .plan-badge ion-icon {
    font-size: 18px;
  }
  
  .section-header {
    padding: 0 10px;
  }
  
  .section-title {
    font-size: 2rem !important;
    line-height: 1.3;
  }
  
  .section-text {
    font-size: 1.4rem !important;
  }
  
  .section-badge {
    padding: 8px 15px;
    font-size: 1.2rem;
  }
  
  .section-badge ion-icon {
    font-size: 16px;
  }
}

