body {
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(63, 208, 255, 0.25),
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(166, 255, 59, 0.22),
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(63, 208, 255, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 20% 70%,
      rgba(166, 255, 59, 0.16),
      transparent 40%
    ),
    linear-gradient(
      160deg,
      rgba(8, 14, 22, 0.95) 0%,
      rgba(8, 12, 18, 0.85) 100%
    );
  background-size:
    200% 200%,
    200% 200%,
    200% 200%,
    200% 200%,
    100% 100%;
  animation: gradientShift 20s ease infinite;
  min-height: 100vh;
}
@keyframes gradientShift {
  0% {
    background-position:
      0 50%,
      100% 50%,
      50% 0%,
      0% 100%,
      0% 0%;
  }
  25% {
    background-position:
      50% 25%,
      75% 75%,
      25% 50%,
      75% 25%,
      0% 0%;
  }
  50% {
    background-position:
      100% 50%,
      0% 50%,
      50% 100%,
      100% 0%,
      0% 0%;
  }
  75% {
    background-position:
      50% 75%,
      25% 25%,
      75% 50%,
      25% 75%,
      0% 0%;
  }
  100% {
    background-position:
      0 50%,
      100% 50%,
      50% 0%,
      0% 100%,
      0% 0%;
  }
}
.contact-hero {
  padding: 100px 48px 60px;
  background: transparent;
  position: relative;
}
.contact-hero__wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-hero__text {
  text-align: left;
  padding-right: 40px;
}
.contact-hero__title {
  font-size: clamp(44px, 8vw, 84px);
  font-weight: 700;
  font-family: "Boldonse", serif;
  background: linear-gradient(135deg, #e8f6ff 0%, #a6ff3b 50%, #3fd0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 40px;
  line-height: 1.25;
  text-shadow: none;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: manual;
  overflow: visible;
  padding-bottom: 8px;
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 30px rgba(166, 255, 59, 0.3));
  animation: titlePulse 3s ease-in-out infinite;
}
@keyframes titlePulse {
  0%,
  100% {
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.6))
      drop-shadow(0 0 30px rgba(166, 255, 59, 0.3));
  }
  50% {
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.6))
      drop-shadow(0 0 45px rgba(166, 255, 59, 0.5))
      drop-shadow(0 0 60px rgba(63, 208, 255, 0.3));
  }
}
.contact-hero__lead {
  font-size: 22px;
  line-height: 1.7;
  color: #c5dff0;
  margin: 0;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.contact-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.hero-mascot {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.77))
    drop-shadow(0 0 5px rgba(166, 255, 59, 0.52));
  position: relative;
  z-index: 1;
}
.contact-info-section {
  padding: 80px 0;
  position: relative;
}
.contact-info-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.map-card {
  width: 100%;
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.48);
  border: 2px solid rgba(131, 251, 11, 0.63);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.2) contrast(1.1);
}
.contact-methods-wrapper {
  display: flex;
  flex-direction: column;
}
.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact-method-card {
  padding: 28px 32px;
  background: rgba(15, 30, 40, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(131, 251, 11, 0.63);
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-method-card:hover {
  transform: translateY(-4px);
  background: rgba(15, 30, 40, 0.85);
  border-color: rgba(131, 251, 11, 0.63);
  box-shadow: 0 12px 40px rgba(63, 208, 255, 0.3);
}
.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(63, 208, 255, 0.25),
    rgba(166, 255, 59, 0.2)
  );
  color: #3fd0ff;
}
.contact-method-content {
  flex: 1;
}
.contact-method-card h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Boldonse", serif;
  color: #ebeff1ff;
  margin: 0 0 6px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}
.contact-method-card p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}
.contact-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #9bf723ff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-link:hover {
  color: #08aecfff;
}
.social-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.social-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.section-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 900;
  font-family: "Boldonse", serif;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 4px rgba(153, 232, 212, 0.36);
  margin: 0;
  white-space: normal;
  z-index: 1;
  letter-spacing: 0.03em;
  word-break: keep-all;
  pointer-events: none;
  width: 100%;
  height: 100%;
  line-height: 1.3;
  text-align: center;
}
.section-title .word {
  position: absolute;
  display: block;
}
.word-1 {
  top: 5%;
  left: 5%;
  font-size: 1em;
}
.word-2 {
  top: 35%;
  right: 18%;
  font-size: 0.6em;
}
.word-3 {
  bottom: 35%;
  left: 9%;
  font-size: 0.75em;
}
.word-4 {
  bottom: 8%;
  right: 5%;
  font-size: 0.9em;
}
.section-subtitle {
  display: none;
}
.social-visual-container {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: 750px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.social-center-image {
  position: relative;
  z-index: 3;
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-social-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floating-social {
  position: absolute;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 3;
}
.floating-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(63, 208, 255, 0.4));
  transition: all 0.3s ease;
}
.floating-social:hover {
  transform: scale(1.15);
}
.floating-social:hover img {
  filter: drop-shadow(0 8px 30px rgba(166, 255, 59, 0.6));
}
.floating-facebook {
  top: 50%;
  left: 50%;
  animation: orbitFacebook 15s linear infinite;
}
@keyframes orbitFacebook {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(280px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(280px)
      rotate(-360deg);
  }
}
.floating-instagram {
  top: 50%;
  left: 50%;
  animation: orbitInstagram 15s linear infinite;
  animation-delay: -5s;
}
@keyframes orbitInstagram {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(280px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(280px)
      rotate(-360deg);
  }
}
.floating-whatsapp {
  top: 50%;
  left: 50%;
  animation: orbitWhatsapp 15s linear infinite;
  animation-delay: -10s;
}
@keyframes orbitWhatsapp {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(280px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(280px)
      rotate(-360deg);
  }
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: none;
  color: #e8f6ff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  transform: scale(1.1);
}
.social-link svg {
  width: 90px;
  height: 90px;
  color: rgba(63, 208, 255, 0.7);
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 20px rgba(63, 208, 255, 0.3));
}
.social-link:hover svg {
  color: #a6ff3b;
  filter: drop-shadow(0 8px 30px rgba(166, 255, 59, 0.5));
}
.social-link span {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .contact-hero {
    padding: 100px 40px 60px;
  }
  .contact-hero__wrapper {
    gap: 60px;
  }
  .contact-info-container {
    padding: 0 40px;
  }
}

@media (max-width: 968px) {
  .contact-hero {
    padding: 120px 32px 60px;
  }
  .contact-hero__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-hero__text {
    text-align: center;
    padding-right: 0;
  }
  .hero-mascot {
    max-width: 400px;
  }
  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 32px;
  }
  .map-card {
    height: 400px;
  }
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
  .contact-method-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 110px 28px 55px;
  }
  .social-visual-container {
    height: 550px;
    max-width: 550px;
  }
  .social-center-image {
    width: 350px;
    height: 350px;
  }
  .floating-social {
    width: 130px;
    height: 130px;
  }
  .floating-social.facebook,
  .floating-social.instagram,
  .floating-social.whatsapp {
    animation-duration: 15s;
  }
  @keyframes orbitFacebook {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(200px)
        rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(200px)
        rotate(-360deg);
    }
  }
  @keyframes orbitInstagram {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(200px)
        rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(200px)
        rotate(-360deg);
    }
  }
  @keyframes orbitWhatsapp {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(200px)
        rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(200px)
        rotate(-360deg);
    }
  }
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  .social-link {
    width: 100%;
    max-width: 300px;
  }
  .social-link svg {
    width: 75px;
    height: 75px;
  }
}

.contact-cta {
  padding: 100px 48px;
  text-align: center;
}
.contact-cta__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 48px;
  background: linear-gradient(
    135deg,
    rgba(63, 208, 255, 0.18) 0%,
    rgba(166, 255, 59, 0.15) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(63, 208, 255, 0.3);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.contact-cta__title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  font-family: "Boldonse", serif;
  color: #e8f6ff;
  margin: 0 0 16px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}
.contact-cta__desc {
  font-size: 18px;
  color: var(--color-text-muted);
  margin: 0 0 32px;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .contact-hero {
    padding: 100px 24px 48px;
  }
  .hero-mascot {
    max-width: 300px;
  }
  .contact-info-container,
  .social-container {
    padding: 0 24px;
  }
  .map-card {
    height: 350px;
  }
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
  .contact-method-card {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }
  .social-visual-container {
    height: 450px;
    max-width: 450px;
  }
  .social-center-image {
    width: 250px;
    height: 250px;
  }
  .floating-social {
    width: 70px;
    height: 70px;
  }
  @keyframes orbitFacebook {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(150px)
        rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(150px)
        rotate(-360deg);
    }
  }
  @keyframes orbitInstagram {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(150px)
        rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(150px)
        rotate(-360deg);
    }
  }
  @keyframes orbitWhatsapp {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(150px)
        rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(150px)
        rotate(-360deg);
    }
  }
  .contact-cta {
    padding: 60px 24px;
  }
  .contact-cta__content {
    padding: 40px 28px;
  }
}
