:root {
  --pastel-pink: #F5C6D0;
  --baby-blue: #C6D6E3;
  --dark: #2D2D44;
  --text: #4A4A68;
}

.contact-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(245, 198, 208, 0.1), rgba(198, 214, 227, 0.1));
  overflow: hidden;
}

.contact-container {
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  display: flex;
  padding-top: 30px;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.contact-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
  position: relative;
  display: inline-block;
}

.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pastel-pink), transparent);
}

.contact-header p i {
  margin-right: 10px;
}

.contact-columns {
  display: flex;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  padding-inline: 10px;
}

.contact-column {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Divisores entre as colunas */
.contact-column:not(:last-child)::after {
  content: '/';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--pastel-pink);
  font-weight: 300;
  opacity: 0.7;
}

.column-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.contact-column:hover .column-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.discord-column .column-icon {
  color: #5865F2;
  background: rgba(88, 101, 242, 0.1);
}

.instagram-column .column-icon {
  color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
}

.whatsapp-column .column-icon {
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.column-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.column-description {
  font-size: 1.1rem;
  color: var(--baby-blue);
  margin-bottom: 25px;
  line-height: 1.5;
  max-width: 300px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 
      0 5px 15px rgba(0,0,0,0.1),
      inset 0 1px 0 rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.5s ease;
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 
      0 10px 20px rgba(0,0,0,0.15),
      inset 0 1px 0 rgba(255,255,255,0.6);
      
}

.contact-btn:hover::before {
  left: 100%;
}

.discord-btn {
  background: linear-gradient(90deg, #5865F2, #4752C4);
  color: white;
}

.instagram-btn {
  background: linear-gradient(90deg, #E1306C, #C13584);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: white;
}

.contact-btn i {
  font-size: 1.4rem;
}

.contact-pattern {
  width: 100%;
  height: 25px;
  background: 
      repeating-linear-gradient(
          45deg,
          transparent,
          transparent 5px,
          rgba(245, 198, 208, 0.2) 5px,
          rgba(245, 198, 208, 0.2) 10px
      );
}

/* Responsividade */
@media (max-width: 968px) {
  .contact-columns {
      flex-direction: column;
      gap: 40px;
  }
  
  .contact-column:not(:last-child)::after {
      display: none;
  }
  
  .contact-column {
      padding: 20px;
  }
}

@media (max-width: 768px) {
  .contact-header h2 {
      font-size: 2.2rem;
  }
  
  .contact-header p {
      font-size: 1.2rem;
  }
  
  .column-title {
      font-size: 1.5rem;
  }
  
  .column-description {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
      padding: 60px 15px;
  }
  
  .contact-header h2 {
      font-size: 1.8rem;
  }
  
  .column-icon {
      font-size: 2.5rem;
      height: 70px;
      width: 70px;
  }
}