@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");

/* ===== VARIABLES Y RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #081b29;
  --title-color: #00eeff;
  --text-color: rgba(255, 255, 255, 0.9);
  --soft-white: rgba(255, 255, 255, 0.8);
  --navbar-gradient-start: #1d2b36;
  --navbar-gradient-end: #081b29;
  --transition: all 0.3s ease;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --bg-dark: #0a0a0a;
  --bg-card: rgba(255, 255, 255, 0.05);

  --primary-bg: #0a0f1c;
  --title-color: #00eeff;
  --soft-white: #e5e7eb;
  --transition: all 0.3s ease;
  --card-bg-1: linear-gradient(145deg, #1a252f, #0f1419);
  --card-bg-2: linear-gradient(145deg, #1f2937, #111827);
  --purple-gradient: linear-gradient(135deg, #6a4c93, #9333ea);
  --cyan-gradient: linear-gradient(135deg, #00eeff, #0099cc);
  --orange-gradient: linear-gradient(135deg, #f59e0b, #d97706);
  --green-gradient: linear-gradient(135deg, #10b981, #059669);
}

/* ===== ELEMENTOS BASE ===== */
body {
  background-color: var(--bg-color);
  color: var(--soft-white);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.hack-font,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Hack", monospace;
  color: var(--soft-white);
  font-weight: 700;
}

/* ===== COMPONENTES REUTILIZABLES ===== */
.section {
  padding: 80px 0;
}

.btn-custom {
  background-color: var(--title-color);
  color: white;
  border: none;
  padding: 10px 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-custom:hover {
  background-color: #00c9d8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-family: "Michroma", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--title-color);
}

/* ===== NAVBAR SIMPLIFICADO (sin redes sociales) ===== */
.navbar {
  background: linear-gradient(
    to right,
    var(--navbar-gradient-start),
    var(--navbar-gradient-end)
  );
  border-bottom: 1px solid rgba(0, 238, 255, 0.2);
  padding: 10px 0;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  max-width: 100%;
  padding: 5px 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 5px rgba(0, 238, 255, 0.5));
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  position: relative;
  margin: 0 5px;
}

.nav-link {
  color: var(--soft-white) !important;
  margin: 0 10px;
  transition: var(--transition);
  font-family: "Michroma", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 8px 12px !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--title-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--title-color) !important;
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--title-color) !important;
  font-weight: 600;
}

.custom-toggler {
  border: 1px solid rgba(0, 238, 255, 0.5) !important;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.custom-toggler:hover {
  background-color: rgba(0, 238, 255, 0.1);
}

.custom-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 238, 255, 0.25);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 238, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(17, 46, 66, 0.95);
    border-radius: 8px;
    margin-top: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
  }

  .logo-img {
    height: 80px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 60px;
  position: relative;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero h3,
.hero p {
  font-family: "Michroma", sans-serif;
  color: var(--title-color);
  letter-spacing: 2px;
}

.hero h3 {
  font-size: 1.2rem;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.hero .highlight {
  color: #ffff;
  font-weight: bold;
}

.rocket-img {
  max-width: 100%;
  animation: floating 5s infinite ease-in-out;
}

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

.questions-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px 0;
}

.question-item {
  margin-bottom: 25px;
}

.question-item h5 {
  font-family: "Michroma", sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
}

.question-item i {
  font-size: 1.3rem;
}

/* ===== REDES SOCIALES EN HERO ===== */
.hero-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.hero-social-link {
  width: 45px;
  height: 45px;
  background: rgba(0, 238, 255, 0.1);
  border: 2px solid rgba(0, 238, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.hero-social-link i {
  font-size: 1.2rem;
  color: var(--title-color);
  transition: var(--transition);
}

.hero-social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 238, 255, 0.4);
}

/* Colores específicos para cada red social */
.hero-social-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
}

.hero-social-link.whatsapp:hover i {
  color: #25d366;
}

.hero-social-link.linkedin:hover {
  background: rgba(0, 119, 181, 0.2);
  border-color: #0077b5;
}

.hero-social-link.linkedin:hover i {
  color: #0077b5;
}

.hero-social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: #e1306c;
}

.hero-social-link.instagram:hover i {
  color: white;
}

.hero-social-link.github:hover {
  background: rgba(51, 51, 51, 0.3);
  border-color: #333;
}

.hero-social-link.github:hover i {
  color: #333;
}

/* ===== CTA BUTTON ===== */
.cta-button {
  background: linear-gradient(135deg, var(--title-color), #0099cc);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  color: var(--primary-bg);
  font-family: "Michroma", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 238, 255, 0.3);
  margin-top: 30px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 238, 255, 0.5);
  color: var(--primary-bg);
  background: linear-gradient(135deg, #00eeff, #00ccff);
}

.cta-button i {
  font-size: 1rem;
  transition: var(--transition);
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* ===== WAVE ANIMATION ===== */
.wave {
  display: inline-block;
  animation: wave-animation 2s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave-animation {
  0%,
  60%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h3 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .questions-container {
    margin-top: 30px;
  }

  .hero-social {
    margin: 20px 0;
  }

  .hero-social-link {
    width: 40px;
    height: 40px;
  }

  .hero-social-link i {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.8rem;
  }
}

/* ===== BANNER SECTION ===== */
.banner-full-section {
  padding: 30px 0 50px;
}

.banner-image-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.banner-image-container:hover {
  transform: translateY(-5px);
}

.banner-full-img {
  width: 100%;
  height: auto;
  display: block;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

/* ===== EXPERIENCE BAR ===== */
.experience-bar {
  background-color: rgba(8, 27, 41, 0.95);
  margin: 0;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 238, 255, 0.15);
  border-bottom: 1px solid rgba(0, 238, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.experience-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 238, 255, 0.3),
    transparent
  );
  animation: glow 3s infinite linear;
}

@keyframes glow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.experience-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.experience-info {
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 40px;
}

.experience-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 10px;
  transition: transform 0.3s ease;
  gap: 15px;
}

.experience-stat:hover {
  transform: translateY(-3px);
}

.experience-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: #00eeff;
  font-family: "Hack", monospace;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 238, 255, 0.3);
}

.experience-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-family: "Michroma", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  line-height: 1.3;
}

.tech-icons {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-right: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tech-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.tech-icon-wrapper:hover {
  transform: translateY(-5px);
}

.tech-label {
  font-family: "Hack", monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-icon-wrapper:hover .tech-label {
  opacity: 1;
}

.tech-icons img {
  height: 36px;
  transition: var(--transition);
}

/* Filtros para iconos de tecnología */
.tech-icons .icon-js {
  filter: invert(79%) sepia(66%) saturate(552%) hue-rotate(358deg)
    brightness(107%) contrast(107%);
}

.tech-icons .icon-html {
  filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(348deg)
    brightness(97%) contrast(87%);
}

.tech-icons .icon-css {
  filter: invert(44%) sepia(80%) saturate(1466%) hue-rotate(176deg)
    brightness(95%) contrast(87%);
}

.tech-icons .icon-react {
  filter: invert(74%) sepia(71%) saturate(845%) hue-rotate(157deg)
    brightness(100%) contrast(98%);
}

.tech-icons .icon-wp {
  filter: invert(40%) sepia(30%) saturate(938%) hue-rotate(168deg)
    brightness(94%) contrast(89%);
}

.tech-icons .icon-tailwind {
  filter: invert(59%) sepia(81%) saturate(438%) hue-rotate(157deg)
    brightness(95%) contrast(101%);
}

.tech-icons .icon-mysql {
  filter: invert(32%) sepia(84%) saturate(1066%) hue-rotate(177deg)
    brightness(84%) contrast(96%);
}

.tech-icons .icon-node {
  filter: invert(55%) sepia(62%) saturate(431%) hue-rotate(68deg)
    brightness(93%) contrast(87%);
}

.tech-icons .icon-express {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%);
}

/* Efectos hover para iconos */
.tech-icons .icon-js:hover {
  filter: invert(79%) sepia(66%) saturate(552%) hue-rotate(358deg)
    brightness(107%) contrast(107%) drop-shadow(0 0 8px rgba(255, 214, 0, 0.7));
}

.tech-icons .icon-html:hover {
  filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(348deg)
    brightness(97%) contrast(87%) drop-shadow(0 0 8px rgba(227, 76, 38, 0.7));
}

.tech-icons .icon-css:hover {
  filter: invert(44%) sepia(80%) saturate(1466%) hue-rotate(176deg)
    brightness(95%) contrast(87%) drop-shadow(0 0 8px rgba(33, 150, 243, 0.7));
}

.tech-icons .icon-react:hover {
  filter: invert(74%) sepia(71%) saturate(845%) hue-rotate(157deg)
    brightness(100%) contrast(98%) drop-shadow(0 0 8px rgba(97, 218, 251, 0.7));
}

.tech-icons .icon-wp:hover {
  filter: invert(40%) sepia(30%) saturate(938%) hue-rotate(168deg)
    brightness(94%) contrast(89%) drop-shadow(0 0 8px rgba(33, 117, 155, 0.7));
}

.tech-icons .icon-tailwind:hover {
  filter: invert(59%) sepia(81%) saturate(438%) hue-rotate(157deg)
    brightness(95%) contrast(101%) drop-shadow(0 0 8px rgba(56, 178, 172, 0.7));
}

.tech-icons .icon-mysql:hover {
  filter: invert(32%) sepia(84%) saturate(1066%) hue-rotate(177deg)
    brightness(84%) contrast(96%) drop-shadow(0 0 8px rgba(0, 117, 143, 0.7));
}

.tech-icons .icon-node:hover {
  filter: invert(55%) sepia(62%) saturate(431%) hue-rotate(68deg)
    brightness(93%) contrast(87%) drop-shadow(0 0 8px rgba(104, 160, 99, 0.7));
}

.tech-icons .icon-express:hover {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%)
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
}

.service-card {
  background-color: rgba(13, 35, 49, 0.8);
  border-radius: 10px;
  padding: 40px 25px;
  margin-bottom: 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 238, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 238, 255, 0.3);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--title-color),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  margin-bottom: 25px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-img {
  max-height: 70px;
  filter: invert(100%) brightness(1.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
  filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(155deg)
    brightness(1.1);
}

.service-title {
  color: var(--title-color);
  font-family: "Michroma", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.service-description {
  color: var(--soft-white);
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-cotizar {
  display: inline-block;
  background-color: #00e676;
  color: #081b29;
  font-family: "Michroma", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-cotizar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-cotizar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
  color: #081b29;
}

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

/* ===== PORTFOLIO SECTION ===== */

.portfolio-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.slider-container:before,
.slider-container:after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
}

.slider-container:before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.slider-container:after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

.slider {
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  animation: scroll 60s linear infinite;
  width: calc(500px * 21);
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide {
  width: 500px;
  height: 360px;
  padding: 0 15px;
  transition: transform 0.3s ease;
}

.slide:hover {
  transform: scale(1.05);
}

.proyecto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 238, 255, 0.2);
  transition: var(--transition);
}

.slide:hover .proyecto-img {
  border-color: var(--title-color);
  box-shadow: 0 8px 16px rgba(0, 238, 255, 0.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-500px * 7));
  }
}

.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #00eeff;
  font-family: "Michroma", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
  border: 2px solid #00eeff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-ver-mas:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #00eeff;
  transition: var(--transition);
  z-index: -1;
}

.btn-ver-mas:hover {
  color: var(--bg-color);
}

.btn-ver-mas:hover:before {
  width: 100%;
}

.btn-ver-mas i {
  transition: transform 0.3s ease;
}

.btn-ver-mas:hover i {
  transform: translateX(5px);
}

/* ===== WHY CHOOSE SECTION ===== */

.why-choose-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(0, 238, 255, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.phone-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.phone-mockup {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  filter: drop-shadow(0 10px 30px rgba(0, 238, 255, 0.1));
  animation: floating 5s ease-in-out infinite;
}

.why-choose-content {
  padding: 20px;
}

.why-choose-title {
  font-family: "Michroma", sans-serif;
  font-size: 1.8rem;
  color: var(--title-color);
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.why-choose-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--title-color);
}

.benefits-list {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(13, 35, 49, 0.5);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--title-color);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(5px);
  background-color: rgba(13, 35, 49, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.check-icon {
  margin-right: 15px;
  margin-top: 3px;
}

.check-icon i {
  font-size: 1.3rem;
  color: var(--title-color);
}

.benefit-text {
  font-family: "Michroma", sans-serif;
  font-size: 1rem;
  color: var(--soft-white);
  line-height: 1.5;
}

.benefit-text .highlight {
  color: #fff;
  font-weight: 600;
}

.cta-container {
  margin-top: 30px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background-color: var(--title-color);
  color: var(--bg-color);
  font-family: "Michroma", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 238, 255, 0.3);
  border: 2px solid transparent;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 238, 255, 0.4);
  background-color: #00d9e8;
  color: var(--bg-color);
}

.btn-cta-primary i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
  transform: translateX(5px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: "Michroma", sans-serif;
  font-size: 2.5rem;
  color: var(--title-color);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 238, 255, 0.5);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-color);
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title h2 {
  font-family: "Michroma", sans-serif;
  font-size: 2.5rem;
  color: var(--title-color);
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--title-color),
    transparent
  );
}

.section-title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-top: 20px;
}

/* Contenedor específico para testimonios */
.testimonials .testimonial-item {
  background: linear-gradient(
    135deg,
    rgba(0, 238, 255, 0.08),
    rgba(0, 238, 255, 0.03)
  );
  border: 1px solid rgba(0, 238, 255, 0.2);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 238, 255, 0.1);
  box-sizing: border-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--title-color),
    transparent
  );
  transform: translateX(-100%);
  transition: var(--transition);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-10px);
  border-color: var(--title-color);
  box-shadow: 0 20px 40px rgba(0, 238, 255, 0.2);
}

.testimonials .testimonial-item:hover:before {
  transform: translateX(0);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-item .stars i {
  color: var(--title-color);
  font-size: 1.1rem;
  margin: 0 1px;
  filter: drop-shadow(0 0 5px var(--title-color));
}

.testimonials .testimonial-item .testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(0, 238, 255, 0.4);
  margin: 0 auto 15px;
  object-fit: cover;
  transition: var(--transition);
}

.testimonials .testimonial-item:hover .testimonial-img {
  border-color: var(--title-color);
  box-shadow: 0 0 20px rgba(0, 238, 255, 0.4);
}

.testimonials .testimonial-item h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--title-color);
}

.testimonials .testimonial-item h4 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 20px auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  flex-grow: 1;
}

.profile {
  margin-top: auto;
}

/* Swiper específico */
.testimonials .swiper {
  width: 100%;
  padding-bottom: 50px !important;
}

.testimonials .swiper-wrapper {
  height: auto;
  padding-bottom: 20px;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
  bottom: 0 !important;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 238, 255, 0.3);
  opacity: 1;
  transition: var(--transition);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--title-color);
  box-shadow: 0 0 15px var(--title-color);
}

.testimonials .swiper-slide {
  opacity: 0.6;
  transition: var(--transition);
  height: auto;
}

.testimonials .swiper-slide-active {
  opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 20px;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next,
  .testimonials .swiper-slide-prev {
    opacity: 0.3;
  }

  .testimonials .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .testimonials .testimonial-item {
    min-height: 300px;
    margin: 20px 15px;
    padding: 25px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .testimonials .testimonial-item {
    margin: 20px 10px;
    padding: 20px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 238, 255, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
}

.contact-intro {
  margin-bottom: 50px;
}

.contact-subtitle {
  color: var(--title-color);
  font-family: "Michroma", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.contact-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--title-color);
}

.contact-title {
  font-family: "Hack", monospace;
  font-size: 2.5rem;
  color: var(--soft-white);
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 500px;
}

/* Contact Info */
.contact-info {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 15px 0;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateX(10px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--title-color), #00c9d8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: var(--transition);
}

.info-item:hover .info-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 238, 255, 0.3);
}

.info-icon i {
  color: #081b29;
  font-size: 1.2rem;
  font-weight: bold;
}

.info-content h4 {
  color: var(--title-color);
  font-family: "Michroma", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.info-content p {
  color: var(--soft-white);
  margin: 0;
  font-size: 1rem;
}

/* Contact Form */
.contact-form-container {
  background: rgba(13, 35, 49, 0.4);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(0, 238, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--title-color),
    transparent
  );
}

.form-title {
  color: var(--soft-white);
  font-family: "Hack", monospace;
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  color: var(--soft-white);
  font-family: "Michroma", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 238, 255, 0.2);
  border-radius: var(--border-radius);
  color: var(--soft-white);
  padding: 15px;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--title-color);
  box-shadow: 0 0 0 3px rgba(0, 238, 255, 0.1);
  outline: none;
  color: var(--soft-white);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-send {
  background: linear-gradient(135deg, #00e676, #00c853);
  color: #081b29;
  font-family: "Michroma", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}

.btn-send::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  text-decoration: none;
}

.whatsapp-float i {
  color: white;
  font-size: 1.8rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-form-container {
    padding: 25px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float i {
    font-size: 1.6rem;
  }
}

/* FOOTER SIMPLIFICADO CON LOGO */
.footer-main {
  background: linear-gradient(135deg, #0a1929 0%, #081b29 50%, #0d2235 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 238, 255, 0.2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  padding: 40px 0 20px;
  text-align: center;
}

/* Logo con imagen simplificado */
.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-logo-img {
  height: 100px; /* 👈 NUEVA ALTURA */
  width: auto;
  max-width: 300px; /* 👈 TAMBIÉN AUMENTÉ EL MAX-WIDTH */
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
  filter: brightness(1.3) drop-shadow(0 0 15px rgba(0, 238, 255, 0.5));
}

.footer-tagline {
  color: var(--soft-white);
  font-size: 0.9rem;
  margin-top: 8px;
  opacity: 0.8;
}

/* Grid simplificado */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-family: "Michroma", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Navegación simplificada */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav-link {
  color: var(--soft-white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

.footer-nav-link:hover {
  color: var(--title-color);
  border-bottom-color: var(--title-color);
}

/* Contacto simplificado */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-item {
  color: var(--soft-white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: var(--title-color);
  width: 16px;
}

/* Redes sociales compactas */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 238, 255, 0.1);
  border: 1px solid rgba(0, 238, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link i {
  font-size: 1.1rem;
  color: var(--title-color);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--title-color);
  border-color: var(--title-color);
  transform: translateY(-2px);
}

.social-link:hover i {
  color: #081b29;
}

/* Colores específicos hover */
.social-link.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}
.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}
.social-link.github:hover {
  background: #333;
  border-color: #333;
}
.social-link.email:hover {
  background: #ea4335;
  border-color: #ea4335;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 238, 255, 0.2);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  color: var(--soft-white);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

.footer-copyright strong {
  color: var(--title-color);
}

.developer-link {
  color: var(--title-color);
  text-decoration: none;
  font-family: "Hack", monospace;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.developer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--title-color);
  transition: var(--transition);
}

.developer-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 238, 255, 0.8);
  transform: scale(1.05);
}

.developer-link:hover::after {
  width: 100%;
}

.back-to-top {
  background: rgba(0, 238, 255, 0.1);
  border: 1px solid rgba(0, 238, 255, 0.3);
  color: var(--title-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--title-color);
  color: #081b29;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-nav-list {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
    width: 100%;
  }

  .footer-social {
    gap: 10px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  /* Logo más pequeño en móvil */
  .footer-logo-img {
    height: 70px;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
  color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}
/* ===== MEDIA QUERIES ===== */

/* Tablet y laptop pequeña */
@media (max-width: 1200px) {
  .tech-icons {
    gap: 20px;
  }
  .experience-info {
    gap: 30px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  /* Navbar */
  .navbar-collapse {
    background: linear-gradient(
      to bottom,
      var(--navbar-gradient-start),
      var(--navbar-gradient-end)
    );
    border-radius: var(--border-radius);
    margin-top: 10px;
    padding: 15px;
    border: 1px solid rgba(0, 238, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav {
    padding: 10px 0;
    margin: 0 auto;
  }
  .logo-img {
    height: 120px;
  }
  .nav-item {
    margin: 8px 0;
  }
  .nav-link {
    padding: 10px 15px !important;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: rgba(0, 238, 255, 0.1);
    color: #00eeff !important;
  }

  .nav-link::after {
    display: none;
  }

  /* Animaciones */
  .navbar-collapse.collapsing {
    height: auto;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .navbar-collapse.show {
    animation: slideDown 0.3s forwards;
  }

  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Experience bar */
  .experience-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

  .experience-info {
    padding-left: 0;
    justify-content: center;
    gap: 60px;
  }

  .tech-icons {
    padding-right: 0;
    justify-content: center;
    gap: 30px;
  }

  .experience-bar {
    padding: 30px 0;
  }

  /* Portfolio */

  .section-title {
    font-size: 1.6rem;
  }
  .slide {
    width: 440px;
    height: 320px;
  }
  .slide-track {
    width: calc(440px * 21);
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-440px * 7));
    }
  }

  /* Hero section */
  .hero {
    padding: 100px 0 40px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero h3 {
    font-size: 1.1rem;
  }
  .hero p {
    font-size: 0.95rem;
  }

  /* Services */
  .service-card {
    padding: 35px 20px;
  }
  .service-title {
    font-size: 1.1rem;
  }
  .service-description {
    font-size: 0.9rem;
  }

  /* Why choose section */
  .why-choose-title {
    font-size: 1.6rem;
  }
  .benefit-text {
    font-size: 0.95rem;
  }
  .phone-mockup {
    max-height: 400px;
  }

  /* Banner */
  .desktop-banner {
    display: none;
  }
  .mobile-banner {
    display: block;
  }
}

/* Móvil grande */
@media (max-width: 767.98px) {
  /* Typography */
  .section-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 30px;
  }

  /* Navbar */
  .logo-img {
    height: 80px;
  }
  .navbar {
    padding: 8px 0;
  }
  .navbar-collapse {
    margin-top: 8px;
    padding: 10px;
  }
  .nav-link {
    font-size: 0.85rem;
    padding: 8px 12px !important;
  }

  /* Hero */
  .hero {
    padding: 80px 0 30px;
    text-align: center;
  }
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .hero h3 {
    font-size: 1rem;
  }
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  .rocket-img {
    max-width: 80%;
  }

  /* Questions container */
  .questions-container {
    padding: 15px 0;
  }
  .question-item {
    margin-bottom: 20px;
  }
  .question-item h5 {
    font-size: 0.9rem;
  }
  .question-item i {
    font-size: 1.1rem;
  }

  /* Experience bar */
  .experience-bar {
    padding: 25px 0;
  }
  .experience-container {
    flex-direction: column;
    gap: 25px;
    padding: 0 10px;
  }
  .experience-info {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .experience-stat {
    gap: 10px;
    padding: 8px;
    flex-direction: column;
    text-align: center;
  }
  .experience-number {
    font-size: 2.2rem;
    line-height: 1;
  }
  .experience-text {
    font-size: 0.75rem;
    text-align: center;
  }
  .tech-icons {
    gap: 20px;
    justify-content: center;
    max-width: 100%;
  }
  .tech-icons img {
    height: 32px;
  }
  .tech-label {
    font-size: 0.65rem;
  }

  /* Services */
  .services-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }
  .service-icon {
    height: 70px;
    margin-bottom: 20px;
  }
  .service-img {
    max-height: 60px;
  }
  .service-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .service-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .btn-cotizar {
    font-size: 0.9rem;
    padding: 12px 28px;
  }

  /* Portfolio */
  .portfolio-section {
    padding: 60px 0;
  }
  .slider-container {
    padding: 15px 0;
  }
  .slide {
    width: 320px;
    height: 240px;
    padding: 0 10px;
  }
  .slide-track {
    width: calc(320px * 21);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-320px * 7));
    }
  }

  .btn-ver-mas {
    font-size: 0.9rem;
    padding: 10px 25px;
  }

  /* Why choose */
  .why-choose-section {
    padding: 60px 0;
  }
  .why-choose-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
  }
  .why-choose-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .phone-mockup {
    max-height: 350px;
  }
  .benefit-item {
    padding: 12px;
    margin-bottom: 15px;
  }
  .benefit-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .check-icon i {
    font-size: 1.1rem;
  }
  .btn-cta-primary {
    font-size: 0.9rem;
    padding: 12px 25px;
    width: 100%;
    justify-content: center;
  }

  /* Banner */
  .banner-full-section {
    padding: 20px 0 40px;
  }
}

/* Móvil pequeño */
@media (max-width: 575.98px) {
  /* General */
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  /* Navbar */
  .logo-img {
    height: 65px;
  }
  .navbar-collapse {
    padding: 8px;
  }

  /* Hero */
  .hero {
    padding: 70px 0 25px;
  }
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .hero h3 {
    font-size: 0.9rem;
  }
  .hero p {
    font-size: 0.8rem;
  }
  .rocket-img {
    max-width: 75%;
  }

  /* Experience bar */
  .experience-info {
    gap: 30px;
  }
  .experience-number {
    font-size: 2rem;
  }
  .experience-text {
    font-size: 0.7rem;
  }
  .tech-icons {
    gap: 15px;
  }
  .tech-icons img {
    height: 28px;
  }

  /* Services */
  .services-section {
    padding: 50px 0;
  }
  .service-card {
    padding: 25px 15px;
  }
  .service-icon {
    height: 60px;
  }
  .service-img {
    max-height: 50px;
  }
  .service-title {
    font-size: 0.95rem;
  }
  .service-description {
    font-size: 0.8rem;
  }
  .btn-cotizar {
    font-size: 0.85rem;
    padding: 10px 25px;
  }

  /* Portfolio */
  .portfolio-section {
    padding: 50px 0;
  }
  .slide {
    width: 280px;
    height: 200px;
    padding: 0 8px;
  }
  .slide-track {
    width: calc(280px * 21);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 7));
    }
  }

  .btn-ver-mas {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  /* Why choose */
  .why-choose-section {
    padding: 50px 0;
  }
  .why-choose-title {
    font-size: 1.2rem;
  }
  .phone-mockup {
    max-height: 300px;
  }
  .benefit-item {
    padding: 10px;
  }
  .benefit-text {
    font-size: 0.8rem;
  }
  .check-icon {
    margin-right: 12px;
  }
  .check-icon i {
    font-size: 1rem;
  }
  .btn-cta-primary {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

/* Móvil extra pequeño */
@media (max-width: 480px) {
  /* Hero */
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero h3 {
    font-size: 0.85rem;
  }
  .hero p {
    font-size: 0.75rem;
  }

  /* Experience */
  .experience-info {
    gap: 25px;
    flex-direction: column;
  }
  .experience-number {
    font-size: 1.8rem;
  }
  .experience-text {
    font-size: 0.65rem;
  }
  .tech-icons {
    gap: 12px;
  }
  .tech-icons img {
    height: 24px;
  }

  /* Services */
  .service-card {
    padding: 20px 12px;
  }
  .service-title {
    font-size: 0.9rem;
  }
  .service-description {
    font-size: 0.75rem;
  }

  /* Portfolio */
  .slide {
    width: 250px;
    height: 180px;
  }
  .slide-track {
    width: calc(250px * 21);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }

  /* Why choose */
  .why-choose-title {
    font-size: 1.1rem;
  }
  .phone-mockup {
    max-height: 280px;
  }
  .benefit-text {
    font-size: 0.75rem;
  }
}

/* Landscape móvil */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    padding: 40px 0 20px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .rocket-img {
    max-width: 60%;
  }
  .experience-bar {
    padding: 15px 0;
  }
  .section {
    padding: 40px 0;
  }
  .phone-mockup {
    max-height: 250px;
  }
}

/* Optimizaciones de rendimiento para dispositivos móviles */
@media (max-width: 767.98px) {
  /* Reducir animaciones en móviles para mejor rendimiento */
  .slide-track {
    animation-duration: 80s;
  }

  /* Simplificar efectos hover en móviles */
  .service-card:hover,
  .slide:hover,
  .benefit-item:hover {
    transform: none;
  }

  /* Optimizar sombras para móviles */
  .service-card,
  .benefit-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .slide-track {
    animation: none;
  }

  .rocket-img {
    animation: none;
  }

  .phone-mockup {
    animation: none;
  }
}

/* Alto contraste */
@media (prefers-contrast: high) {
  :root {
    --title-color: #00ffff;
    --text-color: #ffffff;
    --soft-white: #ffffff;
  }

  .service-card,
  .benefit-item {
    border: 2px solid var(--title-color);
  }
}

/*------------ seccion de proyectos------------------- */

/* ===== HERO SECTION ===== */
.hero-section {
  background-color: var(--bg-color);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 238, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-title {
  font-family: "Michroma", sans-serif;
  color: var(--soft-white);
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.3;
}

.hero-title .highlight {
  color: var(--title-color);
}

.hero-subtitle {
  color: var(--text-color);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.9;
}

.btn-custom {
  background: linear-gradient(45deg, var(--title-color), #00c9d8);
  color: white;
  border: none;
  padding: 15px 35px;
  font-weight: 700;
  transition: var(--transition);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-family: "Michroma", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-custom:hover {
  background: linear-gradient(45deg, #00c9d8, var(--title-color));
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 238, 255, 0.3);
  color: white;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background-color: var(--bg-color);
  padding: 80px 0;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== MASONRY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 238, 255, 0.1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 238, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 238, 255, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Diferentes alturas para crear el efecto masonry */
.gallery-item:nth-child(1) {
  min-height: 320px;
}
.gallery-item:nth-child(2) {
  min-height: 280px;
}
.gallery-item:nth-child(3) {
  min-height: 360px;
}
.gallery-item:nth-child(4) {
  min-height: 300px;
}
.gallery-item:nth-child(5) {
  min-height: 340px;
}
.gallery-item:nth-child(6) {
  min-height: 290px;
}
.gallery-item:nth-child(7) {
  min-height: 320px;
}
.gallery-item:nth-child(8) {
  min-height: 310px;
}

/* ===== OVERLAY SIMPLIFICADO ===== */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 27, 41, 0.7);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-link {
  width: 60px;
  height: 60px;
  background: var(--title-color);
  border: 2px solid var(--title-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.overlay-link:hover {
  background: rgba(0, 238, 255, 0.9);
  border-color: rgba(0, 238, 255, 0.9);
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0, 238, 255, 0.4);
}

/* ===== FILTER BUTTONS ===== */
.filter-container {
  text-align: center;
  margin-bottom: 20px;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(0, 238, 255, 0.4);
  color: var(--title-color);
  padding: 12px 25px;
  margin: 8px;
  border-radius: 25px;
  font-family: "Michroma", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--title-color);
  color: var(--bg-color);
  border-color: var(--title-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 238, 255, 0.3);
}
/*------------- seccion precios----------------------*/
.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* ===== SECCIÓN DE PRECIOS ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--primary-bg);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 20% 50%,
      rgba(106, 76, 147, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(0, 238, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 40% 80%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.pricing-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.pricing-title h2 {
  font-family: "Michroma", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--title-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--soft-white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* ===== TARJETAS DE PRECIOS ===== */
.pricing-card {
  background: var(--card-bg-1);
  border: 2px solid rgba(0, 238, 255, 0.2);
  border-radius: 24px;
  padding: 35px 25px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  max-width: 320px;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Efectos de gradiente personalizados para cada plan */
.pricing-card.basic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-gradient);
  border-radius: 24px 24px 0 0;
}

.pricing-card.entrepreneur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--purple-gradient);
  border-radius: 24px 24px 0 0;
}

.pricing-card.professional::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--cyan-gradient);
  border-radius: 24px 24px 0 0;
}

.pricing-card.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange-gradient);
  border-radius: 24px 24px 0 0;
}

.pricing-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 238, 255, 0.03) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 238, 255, 0.15);
}

.pricing-card:hover::after {
  opacity: 1;
}

/* Tarjeta destacada (PROFESIONAL) */
.pricing-card.professional {
  border-color: var(--title-color);
  background: var(--card-bg-2);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 238, 255, 0.1);
}

.pricing-card.professional:hover {
  border-color: var(--title-color);
  box-shadow: 0 30px 60px rgba(0, 238, 255, 0.25);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 25px;
  background: var(--cyan-gradient);
  color: var(--primary-bg);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 238, 255, 0.3);
}

/* ===== CONTENIDO DE LAS TARJETAS ===== */
.plan-name {
  font-size: 1.4rem;
  color: var(--soft-white);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Precio optimizado */
.plan-price {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding: 0 5px;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 3px;
}

.currency {
  font-size: 1rem;
  color: var(--title-color);
  font-weight: 500;
  align-self: flex-start;
  margin-top: 2px;
}

.amount {
  font-family: "Michroma", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  color: var(--title-color);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}

.currency-label {
  font-size: 0.7rem;
  color: rgba(229, 231, 235, 0.7);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 1px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 238, 255, 0.08);
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: var(--transition);
  line-height: 1.4;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li:hover {
  color: var(--title-color);
  transform: translateX(3px);
}

.plan-features li i {
  color: var(--title-color);
  margin-right: 12px;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== BOTONES CTA PERSONALIZADOS ===== */
.plan-cta {
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  color: var(--soft-white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: var(--transition);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.plan-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.plan-cta:hover::before {
  left: 100%;
}

.plan-cta:hover {
  transform: translateY(-2px);
  color: var(--soft-white);
}

/* Estilos específicos por plan */
.pricing-card.basic .plan-cta {
  background: var(--green-gradient);
}

.pricing-card.basic .plan-cta:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.pricing-card.entrepreneur .plan-cta {
  background: var(--purple-gradient);
}

.pricing-card.entrepreneur .plan-cta:hover {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 12px 30px rgba(106, 76, 147, 0.4);
}

.pricing-card.professional .plan-cta {
  background: var(--cyan-gradient);
  color: var(--primary-bg);
  font-weight: 700;
}

.pricing-card.professional .plan-cta:hover {
  background: linear-gradient(135deg, #00ccff, #0099cc);
  color: var(--primary-bg);
  box-shadow: 0 12px 30px rgba(0, 238, 255, 0.4);
}

.pricing-card.premium .plan-cta {
  background: var(--orange-gradient);
}

.pricing-card.premium .plan-cta:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

/* ===== RESPONSIVE OPTIMIZADO ===== */
@media (max-width: 1200px) {
  .pricing-row {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .pricing-card.professional {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .pricing-row {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-title {
    margin-bottom: 50px;
  }

  .pricing-card {
    padding: 30px 22px;
    max-width: none;
  }

  .pricing-card.professional {
    transform: none;
  }

  .plan-name {
    font-size: 1.3rem;
  }

  .amount {
    font-size: 1.5rem;
  }

  .plan-features li {
    font-size: 0.85rem;
    padding: 10px 0;
  }

  .popular-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
    top: -10px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-container {
    padding: 0 15px;
  }

  .pricing-title {
    margin-bottom: 40px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .plan-cta {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .amount {
    font-size: 1.4rem;
  }

  .currency {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .amount {
    font-size: 1.2rem;
  }

  .plan-price {
    padding: 0 3px;
  }

  .plan-features li {
    font-size: 0.8rem;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    min-height: 250px !important;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.7rem;
    margin: 5px;
  }

  .overlay-title {
    font-size: 1.2rem;
  }

  .overlay-description {
    font-size: 0.9rem;
  }
}

/* ===== ANIMACIONES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delay */
.gallery-item:nth-child(1) {
  transition-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  transition-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  transition-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  transition-delay: 0.4s;
}
.gallery-item:nth-child(5) {
  transition-delay: 0.5s;
}
.gallery-item:nth-child(6) {
  transition-delay: 0.6s;
}
.gallery-item:nth-child(7) {
  transition-delay: 0.7s;
}
.gallery-item:nth-child(8) {
  transition-delay: 0.8s;
}
