/* CONTACTO */
.contact-section {
  background: #fff;
  padding: 32px 0 185px;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + 32px);
  min-height: auto;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  animation: slideInLeft 0.6s ease-out;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 32px;
  animation: fadeIn 0.8s ease-out;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: slideInRight 0.6s ease-out backwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }
.contact-item:nth-child(5) { animation-delay: 0.5s; }

.ci {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #3b82f6;
  color: #fff;
  padding: 0;
  margin: 0;
}

.ci svg {
  width: 30px;
  height: 30px;
  fill: white;
  color: white;
  display: block;
  margin: 0;
}

.ci svg path {
  fill: white !important;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label {
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
}

.value {
  font-size: 15px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .contact-subtitle {
    font-size: 24px;
  }
  
  .ci {
    width: 48px;
    height: 48px;
  }
  
  .ci svg {
    width: 20px;
    height: 20px;
  }
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-linkedin img {
  border-radius: 4px;
  transition: transform 0.15s;
}

.top-linkedin img:hover {
  transform: scale(1.08);
}

.top-phone {
  font-size: 14px;
  white-space: nowrap;
  color: #0f172a;
}

