/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */

body {
  font-family: Arial, Helvetica, sans-serif;

  background: #071120;

  color: white;

  overflow-x: hidden;
}

/* BACKGROUND */

.background-grid {
  position: fixed;

  inset: 0;

  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;

  z-index: -2;

  animation: gridMove 20s linear infinite;
}

/* GRID ANIMATION */

@keyframes gridMove {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(60px);
  }
}

/* HEADER */

.header {
  width: 100%;

  padding: 28px 8%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 1000;

  background: rgba(7, 17, 32, 0.75);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* LOGO */

.logo {
  font-size: 28px;

  font-weight: 700;

  letter-spacing: 1px;

  color: #ffffff;
}

/* NAV */

.nav {
  display: flex;

  gap: 40px;
}

.nav a {
  color: #dbe4f0;

  text-decoration: none;

  font-size: 15px;

  transition: 0.3s;
}

.nav a:hover {
  color: #60a5fa;
}

/* HERO */

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 140px 8% 100px;

  position: relative;

  overflow: hidden;
}

/* HERO CONTENT */

.hero-content {
  max-width: 1100px;

  margin: auto;

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}

/* TAG */

.hero-tag {
  display: inline-block;

  margin-bottom: 26px;

  padding: 11px 22px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 999px;

  color: #60a5fa;

  font-size: 12px;

  letter-spacing: 2px;

  text-transform: uppercase;

  background: rgba(255, 255, 255, 0.03);
}

/* TITLE */

/* TITLE */

.hero h1 {
  font-size: clamp(42px, 5vw, 72px);

  line-height: 1.15;

  margin-bottom: 28px;

  font-weight: 650;

  max-width: 1000px;

  margin-left: auto;

  margin-right: auto;

  color: #f8fafc;

  letter-spacing: -2px;
}

/* TEXT */

.hero p {
  font-size: 20px;

  line-height: 1.9;

  color: #cbd5e1;

  margin-bottom: 45px;

  max-width: 850px;

  margin-left: auto;

  margin-right: auto;

  font-weight: 300;
}

/* BUTTONS */

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

/* BUTTON PRIMARY */

.btn-primary {
  background: #2563eb;

  color: white;

  padding: 18px 34px;

  border-radius: 12px;

  text-decoration: none;

  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);

  background: #3b82f6;
}

/* BUTTON SECONDARY */

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: white;

  padding: 18px 34px;

  border-radius: 12px;

  text-decoration: none;

  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);

  transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .header {
    flex-direction: column;

    gap: 20px;
  }

  .nav {
    flex-wrap: wrap;

    justify-content: center;

    gap: 20px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero p {
    font-size: 18px;
  }
}
/* HERO WORLD */

.hero-world {
  position: absolute;

  width: 1000px;

  height: 1000px;

  right: -180px;

  top: 50%;

  transform: translateY(-50%);

  background: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1400&auto=format&fit=crop")
    center/cover;

  opacity: 0.38;

  border-radius: 50%;

  filter: blur(0.2px) contrast(1.25) brightness(1.15) saturate(1.1);

  animation: rotateWorld 90s linear infinite;

  z-index: 0;
}
/* HERO OVERLAY */

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.48) 0%,
    rgba(2, 6, 23, 0.28) 45%,
    rgba(2, 6, 23, 0.58) 100%
  );

  z-index: 1;
}
/* WORLD ROTATION */

@keyframes rotateWorld {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
/* HERO LINES */

.hero-lines {
  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 45%;

  height: 500px;

  z-index: 0;

  opacity: 0.65;

  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 28px,
    rgba(59, 130, 246, 0.35) 29px,
    transparent 30px
  );

  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.1),
    transparent
  );

  animation: dataFlow 6s linear infinite;
}

/* LIGHT FLOW */

.hero-lines::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0),
    rgba(59, 130, 246, 0.9),
    rgba(59, 130, 246, 0)
  );

  width: 220px;

  animation: moveLines 4s linear infinite;
}

/* ANIMATIONS */

@keyframes moveLines {
  from {
    transform: translateX(-250px);
  }

  to {
    transform: translateX(900px);
  }
}

@keyframes dataFlow {
  from {
    opacity: 0.45;
  }

  50% {
    opacity: 0.75;
  }

  to {
    opacity: 0.45;
  }
}
/* =========================
   ABOUT SECTION
========================= */

.about {
  position: relative;

  padding: 70px 8% 120px;

  background: #020817;

  overflow: hidden;
}

.about::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at left,
    rgba(59, 130, 246, 0.08),
    transparent 45%
  );

  pointer-events: none;
}

.about-container {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.about-text h2 {
  font-size: 2.3rem;

  line-height: 1.1;

  margin: 22px 0;

  color: white;

  font-weight: 700;
}

.about-text p {
  color: #94a3b8;

  font-size: 1.05rem;

  line-height: 1.9;

  margin-bottom: 22px;
}

.section-tag {
  display: inline-block;

  padding: 10px 22px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 999px;

  font-size: 0.82rem;

  letter-spacing: 3px;

  color: #60a5fa;

  background: rgba(255, 255, 255, 0.02);

  backdrop-filter: blur(12px);
}

.about-image {
  position: relative;

  border-radius: 28px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 0 40px rgba(37, 99, 235, 0.18);

  transition: 0.4s;
}

.about-image:hover {
  transform: translateY(-8px);
}

.about-image img {
  width: 100%;

  max-height: 620px;

  object-fit: cover;

  display: block;
}

.about-stats {
  display: flex;

  gap: 20px;

  margin-top: 35px;
}

.stat-box {
  flex: 1;

  padding: 24px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);
}

.stat-box strong {
  display: block;

  font-size: 2rem;

  color: white;

  margin-bottom: 10px;
}

.stat-box span {
  color: #94a3b8;

  font-size: 0.95rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-text {
    text-align: center;
  }

  .about-stats {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 2.3rem;
  }
}
/* =========================
   VISION SECTION
========================= */

.vision-section {
  position: relative;

  padding: 70px 8% 120px;

  background: #030712;

  overflow: hidden;
}

.vision-bg {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(59, 130, 246, 0.1),
      transparent 35%
    ),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.015) 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.02) 100%
    );

  opacity: 0.95;

  animation: bgMove 14s ease-in-out infinite alternate;

  overflow: hidden;
}

@keyframes bgMove {
  from {
    transform: translateX(-20px) translateY(-10px);
  }

  to {
    transform: translateX(20px) translateY(10px);
  }
}

.vision-header {
  position: relative;

  z-index: 2;

  text-align: center;

  margin-bottom: 70px;
}

.vision-header h2 {
  font-size: 2.6rem;

  color: white;

  margin-top: 25px;

  font-weight: 700;
}

.vision-grid {
  position: relative;

  z-index: 2;

  display: flex;

  justify-content: center;

  gap: 34px;

  flex-wrap: wrap;
}

.vision-card {
  width: 420px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 24px;

  overflow: hidden;

  backdrop-filter: blur(14px);

  transition: 0.45s;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.vision-card:hover {
  transform: translateY(-10px);

  border-color: rgba(96, 165, 250, 0.35);

  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18);
}

.vision-card img {
  width: 100%;

  height: 250px;

  object-fit: cover;

  display: block;
}

.vision-content {
  padding: 35px;
}

.vision-content p {
  color: #dbe4f0;

  font-size: 1.05rem;

  line-height: 1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-header h2 {
    font-size: 2rem;
  }

  .vision-card img {
    height: 260px;
  }
}
.vision-bg::before {
  content: "";

  position: absolute;

  width: 140%;

  height: 140%;

  top: -20%;

  left: -20%;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 0px,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0px,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 80px
    );

  animation: gridMove 30s linear infinite;

  opacity: 0.4;
}

@keyframes gridMove {
  from {
    transform: translateX(0) translateY(0);
  }

  to {
    transform: translateX(-80px) translateY(-80px);
  }
}
/* =========================
   ANIMATED TECH BACKGROUND
========================= */

.vision-lines {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);

  background-size: 80px 80px;

  opacity: 0.25;

  animation: gridFloat 20s linear infinite;

  z-index: 1;
}

@keyframes gridFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-80px);
  }
}

/* PARTICLES */

.vision-particles {
  position: absolute;

  inset: 0;

  overflow: hidden;

  z-index: 1;
}

.vision-particles span {
  position: absolute;

  width: 260px;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.9),
    transparent
  );

  opacity: 0.35;

  filter: blur(0.5px);

  animation: moveLight 8s linear infinite;
}

.vision-particles span:nth-child(1) {
  top: 12%;

  left: -20%;

  animation-delay: 0s;
}

.vision-particles span:nth-child(2) {
  top: 28%;

  left: -30%;

  animation-delay: 2s;
}

.vision-particles span:nth-child(3) {
  top: 48%;

  left: -25%;

  animation-delay: 4s;
}

.vision-particles span:nth-child(4) {
  top: 68%;

  left: -35%;

  animation-delay: 1s;
}

.vision-particles span:nth-child(5) {
  top: 84%;

  left: -20%;

  animation-delay: 3s;
}

@keyframes moveLight {
  from {
    transform: translateX(0) translateY(0) rotate(0deg);

    opacity: 0;
  }

  20% {
    opacity: 0.45;
  }

  80% {
    opacity: 0.45;
  }

  to {
    transform: translateX(1600px) translateY(-120px) rotate(8deg);

    opacity: 0;
  }
}
/* =========================
   SERVICES SECTION
========================= */

.services-section {
  position: relative;

  padding: 70px 8% 120px;

  background: #020817;

  overflow: hidden;
}

/* FONDO DINÁMICO */

.services-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(59, 130, 246, 0.15),
      transparent 35%
    );

  z-index: 0;
}

/* EFECTO TECNOLÓGICO */

.services-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    115deg,
    rgba(59, 130, 246, 0) 0%,
    rgba(59, 130, 246, 0.12) 20%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(59, 130, 246, 0.1) 80%,
    rgba(59, 130, 246, 0) 100%
  );

  opacity: 0.9;

  animation: moveTech 10s linear infinite;

  z-index: 0;
}

/* LÍNEAS TEC */

.services-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);

  background-size: 60px 60px;

  opacity: 0.35;

  z-index: 0;
}

.services-container {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: auto;
}

/* BADGE */

.section-badge {
  width: fit-content;

  margin: 0 auto 20px;

  padding: 12px 30px;

  border-radius: 999px;

  border: 1px solid rgba(96, 165, 250, 0.18);

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(10px);

  color: #60a5fa;

  font-size: 0.82rem;

  letter-spacing: 5px;
}

/* TITULO */

.services-title {
  text-align: center;

  max-width: 1100px;

  margin: auto;
  margin-bottom: 28px;

  font-size: 2.5rem;

  line-height: 1.1;

  color: white;

  font-weight: 700;
}

/* SUBTITULO */

.services-subtitle {
  max-width: 900px;

  margin: auto;
  margin-bottom: 80px;

  text-align: center;

  color: rgba(255, 255, 255, 0.68);

  font-size: 1.15rem;

  line-height: 1.8;
}

/* GRID */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

/* CARDS */

.service-card {
  position: relative;

  background: rgba(5, 12, 30, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 28px;

  overflow: hidden;

  backdrop-filter: blur(14px);

  transition: 0.45s ease;

  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-12px);

  border-color: rgba(96, 165, 250, 0.35);

  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(59, 130, 246, 0.12);
}

/* IMAGEN */

.service-card img {
  width: 100%;
  height: 190px;

  object-fit: cover;

  opacity: 0.95;

  transition: 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

/* CONTENIDO */

.service-content {
  padding: 22px;
}

.service-content h3 {
  color: white;

  font-size: 1.45rem;

  margin-bottom: 16px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.68);

  line-height: 1.8;

  font-size: 0.98rem;
}

/* ANIMACIÓN */

@keyframes moveTech {
  from {
    transform: translateX(-10%);
  }

  to {
    transform: translateX(10%);
  }
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .services-title {
    font-size: 2.5rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }
}
/* =========================
   LÍNEAS ANIMADAS
========================= */

.services-lines {
  position: absolute;

  inset: 0;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;
}

.services-lines span {
  position: absolute;

  display: block;

  width: 2px;

  height: 220px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(96, 165, 250, 0.9),
    transparent
  );

  opacity: 0.45;

  filter: blur(0.4px);

  animation: techLines 7s linear infinite;
}

/* POSICIONES */

.services-lines span:nth-child(1) {
  left: 8%;
  animation-delay: 0s;
}

.services-lines span:nth-child(2) {
  left: 28%;
  height: 280px;

  animation-delay: 1s;
}

.services-lines span:nth-child(3) {
  left: 52%;
  height: 240px;

  animation-delay: 2s;
}

.services-lines span:nth-child(4) {
  left: 74%;
  height: 320px;

  animation-delay: 3s;
}

.services-lines span:nth-child(5) {
  left: 90%;
  height: 260px;

  animation-delay: 4s;
}

/* MOVIMIENTO */

@keyframes techLines {
  0% {
    transform: translateY(-250px) rotate(18deg);

    opacity: 0;
  }

  20% {
    opacity: 0.45;
  }

  100% {
    transform: translateY(1200px) rotate(18deg);

    opacity: 0;
  }
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   CLIENTES
========================= */

.clients-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: #020817;
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop")
    center/cover;
  opacity: 0.15;
  animation: clientsMove 28s ease-in-out infinite alternate;
  transform: scale(1.08);
}

.clients-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 8, 23, 0.92),
    rgba(2, 8, 23, 0.75),
    rgba(2, 8, 23, 0.92)
  );
  z-index: 1;
}

.clients-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #60a5fa;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.clients-section h2 {
  font-size: 2.3rem;

  color: #fff;

  margin-bottom: 18px;

  font-weight: 650;

  line-height: 1.2;
}

.clients-description {
  color: rgba(255, 255, 255, 0.68);

  max-width: 760px;

  line-height: 1.8;

  font-size: 1rem;

  margin-bottom: 60px;

  margin-left: auto;

  margin-right: auto;
}

.clients-grid {
  display: grid;

  grid-template-columns: repeat(3, 320px);

  justify-content: center;

  gap: 24px;
}

.client-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.12);
}

.client-logo {
  height: 180px;

  overflow: hidden;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.client-card:hover img {
  transform: scale(1.06);
}

.client-info {
  padding: 28px;
}

.client-info h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.client-info p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.client-info a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.client-info a:hover {
  color: #93c5fd;
}

@keyframes clientsMove {
  0% {
    transform: scale(1.08) translateX(0px);
  }

  100% {
    transform: scale(1.14) translateX(-25px);
  }
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .clients-section h2 {
    font-size: 2.2rem;
  }
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  position: relative;

  padding: 120px 8% 0;

  background: #020817;

  overflow: hidden;
}

.contact-bg {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.14),
      transparent 30%
    ),
    radial-gradient(circle at 80% 60%, rgba(37, 99, 235, 0.12), transparent 35%);

  animation: contactGlow 10s ease-in-out infinite alternate;

  z-index: 0;
}

@keyframes contactGlow {
  0% {
    transform: scale(1);

    opacity: 0.6;
  }

  100% {
    transform: scale(1.1);

    opacity: 1;
  }
}

.contact-header {
  position: relative;

  z-index: 2;

  text-align: center;

  margin-bottom: 70px;
}

.contact-header span {
  display: inline-block;

  padding: 12px 26px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 999px;

  color: #60a5fa;

  font-size: 0.9rem;

  letter-spacing: 4px;

  margin-bottom: 24px;

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(10px);
}

.contact-header h2 {
  font-size: 3.2rem;

  color: #fff;

  margin-bottom: 20px;

  font-weight: 700;
}

.contact-header p {
  max-width: 760px;

  margin: auto;

  color: rgba(255, 255, 255, 0.7);

  line-height: 1.8;

  font-size: 1.05rem;
}

.contact-container {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1.4fr;

  gap: 40px;

  align-items: stretch;
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 28px;

  padding: 60px 50px;

  backdrop-filter: blur(16px);
}

.contact-info h3 {
  font-size: 2rem;

  color: #fff;

  margin-bottom: 35px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 18px;

  font-size: 1rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 28px;

  padding: 50px;

  backdrop-filter: blur(16px);
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 14px;

  padding: 16px 18px;

  color: #fff;

  font-size: 1rem;

  outline: none;

  transition: 0.3s;
}

.contact-form textarea {
  min-height: 160px;

  resize: none;

  margin-top: 20px;

  margin-bottom: 25px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;

  background: rgba(255, 255, 255, 0.06);
}

.contact-form button {
  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: #fff;

  border: none;

  padding: 16px 34px;

  border-radius: 14px;

  cursor: pointer;

  font-size: 1rem;

  font-weight: 600;

  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.map-container {
  position: relative;

  z-index: 2;

  margin-top: 70px;

  border-radius: 28px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
  width: 100%;

  height: 420px;

  border: none;

  filter: grayscale(1) contrast(1.1) brightness(0.8);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-header h2 {
    font-size: 2.4rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   FOOTER
========================= */

.footer {
  position: relative;

  background: #020617;

  padding: 90px 8% 30px;

  overflow: hidden;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bg {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.08),
      transparent 30%
    ),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.08), transparent 35%);

  animation: footerGlow 10s ease-in-out infinite alternate;

  z-index: 0;
}

@keyframes footerGlow {
  0% {
    transform: scale(1);

    opacity: 0.5;
  }

  100% {
    transform: scale(1.08);

    opacity: 1;
  }
}

.footer-container {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 60px;

  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 2rem;

  color: #fff;

  margin-bottom: 20px;

  letter-spacing: 2px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);

  line-height: 1.8;

  max-width: 500px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;

  margin-bottom: 22px;

  font-size: 1.1rem;
}

.footer-links a {
  display: block;

  margin-bottom: 14px;

  color: rgba(255, 255, 255, 0.65);

  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #60a5fa;

  transform: translateX(4px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.65);

  margin-bottom: 14px;
}

.footer-bottom {
  position: relative;

  z-index: 2;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);

  font-size: 0.95rem;
}
.success-message {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10b981;
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  transition: opacity 0.6s ease;
}
.seo-content{
    display:none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer {
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}
html {
  scroll-behavior: smooth;
}
.navbar {
  display: flex;

  gap: 38px;

  align-items: center;
}
.navbar a {
  color: rgba(255, 255, 255, 0.82);

  text-decoration: none;

  font-size: 1rem;

  font-weight: 500;

  transition: 0.3s ease;
}

.navbar a:hover {
  color: #60a5fa;

  text-shadow: 0 0 12px rgba(96, 165, 250, 0.45);
}
/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
  position: fixed;

  width: 68px;

  height: 68px;

  bottom: 28px;

  right: 28px;

  background: #25d366;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);

  z-index: 9999;

  transition: 0.3s ease;

  animation: whatsappPulse 2s infinite;
}

.whatsapp-float img {
  width: 34px;

  height: 34px;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);

  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
