﻿/* ============================================
   CTA SECTION - Call To Action
   ============================================ */
.cta-section {
  background-image: linear-gradient(135deg,
      rgba(66, 133, 244, 0.35) 0%,
      rgba(25, 103, 210, 0.5) 100%),
    url("../../imagenes/bg/accion-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.cta-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-content {
  text-align: center;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn,
.cta-content a.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #4285f4;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(66, 133, 244, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.cta-content .btn::before,
.cta-content a.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(66, 133, 244, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-content .btn:hover::before,
.cta-content a.btn:hover::before {
  width: 400px;
  height: 400px;
}

.cta-content .btn:hover,
.cta-content a.btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(66, 133, 244, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-content .btn:active,
.cta-content a.btn:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-content .btn,
  .cta-content a.btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.work-process-section {
  background: #ffffff;
  padding: 50px 20px 100px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Prompt', sans-serif;
}

.work-process-section .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.work-process-section .section-header {
  margin-bottom: 80px;
  text-align: center;
}

.work-process-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.work-process-section .section-header p {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Timeline vertical container */
.process-timeline {
  position: relative;
  padding: 40px 0;
  max-width: 1100px;
  margin: 0 auto;
  /* Variable de progreso controlada por JS (0% a 100%) */
  --line-progress: 0%;
}

/* Línea base (gris) estática */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 183px; /* Empieza exactamente debajo del primer icono */
  bottom: 178px; /* Termina exactamente encima del último icono */
  width: 4px;
  background: #f0f2f5;
  transform: translateX(-50%);
  z-index: 1; 
  border-radius: 4px;
}

/* Línea de progreso (naranja) animada */
.process-timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 183px; /* Empieza exactamente debajo del primer icono */
  width: 3px;
  height: var(--line-progress);
  max-height: calc(100% - 361px); /* 183px top + 178px bottom = 361px */
  background: linear-gradient(180deg, #f5ab4a 0%, #ff8c00 100%);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(245, 171, 74, 0.5);
  transition: height 0.1s linear;
  background-size: 100% 200%;
}

/* Cada paso del proceso */
.process-step {
  position: relative;
  margin-bottom: 40px; /* Reducido de 80px */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  z-index: 10; 
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Animación escalonada */
.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

/* Contenido del paso (tarjeta) */
.step-content {
  background: #f5f5f5;
  padding: 35px 40px;
  border-radius: 50px 0px 50px 0px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  border: 1px solid #f5ab4a; /* Borde naranja de 1px */
}

/* Pasos impares: contenido a la izquierda */
.process-step:nth-child(odd) .step-content {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

/* Pasos pares: contenido a la derecha */
.process-step:nth-child(even) .step-content {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.step-content:hover {
  background: #ffffff; /* Cambio ligero a blanco para resaltar más */
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #ff8c00; /* Borde un poco más oscuro al hover */
}

.step-content h3 {
  font-size: 1.8rem; /* Texto más grande */
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-content p {
  font-size: 1.15rem; /* Texto más grande */
  color: #555555;
  line-height: 1.7;
  font-weight: 300;
}

/* Icono circular naranja - siempre en el centro */
.step-icon {
  grid-column: 2;
  grid-row: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #f5ab4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20; 
  box-shadow: 0 4px 15px rgba(245, 171, 74, 0.3);
  transition: all 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 20px rgba(245, 171, 74, 0.5);
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
}

/* Ocultar el número del paso */
.step-icon .step-number {
  display: none;
}

/* Ocultar conectores (no se usan en este diseño) */
.process-connector {
  display: none;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
  .process-step {
    gap: 40px;
  }

  .step-content {
    max-width: 400px;
    padding: 30px 35px;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }

  .step-icon {
    width: 55px;
    height: 55px;
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .work-process-section {
    padding: 60px 20px;
  }

  .work-process-section .section-header h2 {
    font-size: 2rem;
  }

  .work-process-section .section-header {
    margin-bottom: 50px;
  }

  /* Timeline vertical centrada en móvil */
  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: row !important;
    gap: 20px;
    margin-bottom: 50px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

  .step-icon svg {
    width: 22px;
    height: 22px;
  }

  .step-content {
    max-width: 100%;
    padding: 25px 30px;
    border-radius: 30px 0px 30px 0px;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }
}

/* Servicios Profesional */
.services-professional-area {
  background: linear-gradient(120deg, #f8fafc 0%, #e0e1dd 100%);
  padding: 30px 0 32px 0;
  position: relative;
  z-index: 1;
}

.services__bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.service__shape img {
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  opacity: 0.18;
  filter: blur(1px);
}

.floating-orbs {
  position: absolute;
  left: 40px;
  top: 60px;
  z-index: 0;
}

.orb {
  border-radius: 50%;
  opacity: 0.18;
  position: absolute;
}

.orb-1 {
  width: 60px;
  height: 60px;
  background: #4285f4;
  left: 0;
  top: 0;
}

.orb-2 {
  width: 40px;
  height: 40px;
  background: #6a5af9;
  left: 80px;
  top: 40px;
}

.orb-3 {
  width: 30px;
  height: 30px;
  background: #232a36;
  left: 40px;
  top: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-header {
  margin-bottom: 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: #e0e1dd;
  color: #232a36;
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 22px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(34, 42, 54, 0.1);
  margin-bottom: 18px;
  letter-spacing: 1px;
}

#services-section {
  background: #ffffff;
  position: relative;
}

.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  text-align: left !important;
  margin-bottom: 80px;
}

.services-header .services-main-title {
  flex: 1;
  margin-bottom: 0;
}

.services-header-description {
  flex: 1;
  max-width: 550px;
}

.services-header-description h3 {
  font-size: 1.5rem;
  color: #232a36;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.services-header-description h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 25px;
  background: #ffa631;
  border-radius: 2px;
}

.services-header-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 991px) {
  .services-header {
    flex-direction: column;
    text-align: center !important;
    gap: 30px;
  }
  
  .services-header-description h3 {
    padding-left: 0;
  }
  
  .services-header-description h3::before {
    display: none;
  }
}

.services-main-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #232a36;
  line-height: 1.1;
}

.highlight-gradient {
  color: #ffa631;
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-top: 15px;
  letter-spacing: 4px;
}

.services-subtitle {
  color: #232a36;
  font-size: 1.18rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* Nueva Sección: Diseño y Desarrollo */
.about-dev-section {
  padding: 120px 0 60px 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.about-dev-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-shape {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 400px;
  opacity: 0.25;
  filter: none;
}

.about-dev-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-dev-content {
  flex: 1;
}

.about-dev-image {
  flex: 1;
  position: relative;
}

.about-dev-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-dev-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  margin-top: 30px;
  max-width: 600px;
}

@media (max-width: 991px) {
  .about-dev-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .about-dev-text {
    margin: 30px auto 0;
  }
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.service-card {
  background: #f5f5f5;
  border-radius: 50px 0px 50px 0px;
  box-shadow: 0 4px 24px 0 rgba(58, 140, 255, 0.12),
    0 1.5px 8px 0 rgba(34, 42, 54, 0.08);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #f5ab4a;
}

.service-card:hover {
  background: #ffffff;
  border-color: #ff8c00;
  box-shadow: 0 8px 40px 0 rgba(245, 171, 74, 0.2);
  transform: translateY(-5px);
}

.service-card__inner {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: transparent !important;
  position: relative;
  z-index: 2;
  height: 100%;
  text-align: center;
}

/* Imagen de fondo que cubre toda la tarjeta */
.service-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.service-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  transition: opacity 0.3s ease;
}

.service-card--featured-bg .service-card__bg::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.service-card:hover .service-card__bg img {
  transform: scale(1.1);
}

/* Variante destacada con fondo de imagen */
.service-card--featured-bg {
  min-height: 500px; 
}

.service-card--featured-bg .service-card__inner {
  position: static; 
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card--featured-bg .service-content {
  position: static;
}

.service-card--featured-bg .service-content h4 {
  position: absolute;
  bottom: 25px;
  left: 30px;
  transform: none;
  color: #ffffff !important;
  background: transparent !important;
  font-size: 1.5rem !important;
  font-weight: 600;
  letter-spacing: 1.5px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

/* Tarjeta de contacto final */
.service-card--contact {
  background: #ffa631 !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 25px !important;
}

.service-card--contact .service-card__inner {
  padding: 0 !important;
  gap: 20px !important;
}

.service-card--contact h4 {
  color: #ffffff !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  margin-bottom: 5px !important;
}

.service-card--contact p {
  color: #ffffff !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 1.05rem !important;
  line-height: 1.5 !important;
  opacity: 0.9 !important;
}

.btn-whatsapp-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: #ffffff;
  padding: 18px 45px;
  font-size: 1.2rem;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-card:hover {
  background: #25d366; /* Verde WhatsApp */
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
}

.btn-whatsapp-card svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}


.service-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.icon-background {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5ab4a; /* Fondo naranja */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  margin-right: 0;
}

.service-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.service-content h4 {
  font-size: 1.6rem; /* Aumentado */
  font-weight: 700;
  color: #232a36;
  margin-bottom: 12px;
}

.service-content p {
  color: #232a36;
  font-size: 1rem;
  margin-bottom: 12px;
  background: #f8fafc;
  border-radius: 6px;
  padding: 6px 10px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #232a36;
  font-size: 0.98em;
  font-weight: 500;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 4px 8px;
}

@media (max-width: 900px) {
  .services-professional-area {
    padding: 32px 0 32px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card__inner {
    padding: 24px 16px 18px 16px;
  }
}

/* Barra de direcciones del browser-mockup */
/* Barra de direcciones refinada */
.browser-address-bar {
  width: 100%;
  padding: 0 0 10px 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.address-bar-inner {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #f8fafc 80%, #e0e1dd 100%);
  border-radius: 6px;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 8px rgba(34, 42, 54, 0.1);
  padding: 2px 10px 2px 8px;
  width: 92%;
  max-width: 320px;
  gap: 7px;
  min-height: 28px;
}

.address-lock {
  width: 15px;
  height: 15px;
  display: inline-block;
  background: url('data:image/svg+xml;utf8,<svg fill="%234285f4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 2a4 4 0 0 1 4 4v3h1a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h1V6a4 4 0 0 1 4-4zm-2 7V6a2 2 0 1 1 4 0v3H8zm-2 2v7h8v-7H6z"/></svg>') no-repeat center/contain;
  margin-right: 2px;
  opacity: 0.8;
}

.address-favicon {
  width: 15px;
  height: 15px;
  display: inline-block;
  background: url("https://www.google.com/favicon.ico") no-repeat center/contain;
  margin-right: 5px;
  border-radius: 3px;
  box-shadow: 0 0 2px #d1d5db;
}

.address-input {
  border: none;
  background: transparent;
  color: #232a36;
  font-size: 0.98em;
  width: 100%;
  outline: none;
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0.3px;
  padding: 0 0 0 2px;
  font-weight: 500;
  text-overflow: ellipsis;
}

/* ============================================
   ESTILOS GLOBALES
   ============================================ */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #181c24;
  color: #f8fafc;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVBAR PROFESIONAL CON GLASSMORPHISM
   ============================================ */
.navbar {
  /* Modern Navbar based on rlauweb */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  border-bottom: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

/* Navbar al hacer scroll - fondo oscuro para contraste */
/* Navbar al hacer scroll - fondo blanco suave para mantener estilo */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
}

/* Logo con gradiente y animación */
/* Logo Styles */
.logo {
  font-family: 'Prompt', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: #1e293b; /* Dark color for visibility on light banner */
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: border-box;
}

/* Lista de navegación */
.nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Enlaces de navegación con efectos premium */
/* Enlaces de navegación */
.nav-link {
  font-family: 'Prompt', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #1e293b; /* Dark color for visibility */
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffa631;
  transform: none;
  background: none;
}

.nav-link.active {
  color: #ffa631;
  font-weight: 500;
  background: none;
}

/* Botón CTA Premium */
/* Botón CTA Estilo RlauWeb */
.btn-cta {
  font-family: 'Prompt', sans-serif;
  background: #ffa631; /* Solid Orange */
  color: #000000;
  border-radius: 0px; /* Square corners */
  font-weight: 400;
  font-size: 16px;
  padding: 10px 24px;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.navbar .btn-cta {
  margin-left: 20px;
}

.btn-cta:hover {
  background: #ff9500;
  color: #000000;
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cta:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* Botón específico para el banner (Más grande) */
.banner-btn {
  font-size: 1.1rem;
  padding: 16px 48px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .navbar-nav {
    padding: 18px 24px;
  }

  .nav-list {
    gap: 4px;
  }

  .nav-link {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .btn-cta {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 16px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-list {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .btn-cta {
    order: 2;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .navbar-nav {
    padding: 14px 16px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav-list {
    gap: 4px;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .btn-cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ============================================
   ANIMACIONES KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-30px) translateX(10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-50px);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotate3D {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }

  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(66, 133, 244, 0.3),
      0 0 10px rgba(66, 133, 244, 0.2), 0 0 15px rgba(66, 133, 244, 0.1);
  }

  50% {
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.5),
      0 0 20px rgba(66, 133, 244, 0.3), 0 0 30px rgba(66, 133, 244, 0.2);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceFromCorner {
  0% {
    opacity: 0;
    transform: translate(150px, -150px) scale(0.3) rotate(15deg);
  }

  40% {
    opacity: 1;
    transform: translate(0, 0) scale(1.08) rotate(-2deg);
  }

  60% {
    transform: translate(0, 0) scale(0.95) rotate(1deg);
  }

  80% {
    transform: translate(0, 0) scale(1.02) rotate(-0.5deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@keyframes permanentBounce {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-8px, -8px);
  }
}

/* ============================================
   BANNER PROFESIONAL
   ============================================ */
/* BANNER STYLE - Inspired by rlauweb.com */
.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px 20px;
  font-family: 'Prompt', sans-serif;
  
  /* Capas de fondo: Grid Pattern + Overlay Blanco Suave + Imagen */
  background: 
    radial-gradient(rgba(30, 41, 59, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4)),
    url('../../imagenes/bg/banner-bg.jpg');
    
  background-size: 14px 14px, cover, cover;
  background-position: center;
  background-repeat: repeat, no-repeat, no-repeat;
  
  /* Resplandor Azul Inset - Más intenso para modo oscuro */
  box-shadow: inset 0 0 150px rgba(66, 133, 244, 0.25);
  
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

/* Overlay con patrón de puntos */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

/* Partículas flotantes animadas */
.banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.1), transparent);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: floatSlow 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.banner-shape {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  max-height: 100%;
  width: auto;
  max-width: 30vw;
  filter: brightness(1.1);
  opacity: 0.1;
  z-index: 2;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.banner-shape2 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  max-height: 100%;
  width: auto;
  max-width: 22vw;
  filter: brightness(1.1);
  opacity: 0.1;
  z-index: 2;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

/* Contenido del banner - Limpio sin caja glass */
.banner-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
  padding: 20px;
}

.banner-title {
  color: #000;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: none;
  animation: fadeInDown 0.8s ease-out;
}

.banner-subtitle {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInDown 1s ease-out;
}

.banner-desc {
  color: #000;
  font-size: 1.35rem;
  margin-bottom: 36px;
  font-weight: 500;
  text-shadow: none;
  animation: fadeInUp 1s ease-out 0.2s both;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Badges con animaciones escalonadas */
.badges {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.badge {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  border-radius: 20px;
  padding: 10px 24px;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Efecto shimmer en badges */
.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s;
}

.badge:hover::before {
  left: 100%;
}

.badge.html {
  border-color: #e34c26;
  animation: bounceIn 0.6s ease-out 0.5s both;
}

.badge.css {
  border-color: #2965f1;
  animation: bounceIn 0.6s ease-out 0.6s both;
}

.badge.js {
  border-color: #f7df1e;
  animation: bounceIn 0.6s ease-out 0.7s both;
}

.badge.php {
  border-color: #777bb4;
  animation: bounceIn 0.6s ease-out 0.8s both;
}

.badge.react {
  border-color: #61dafb;
  animation: bounceIn 0.6s ease-out 0.9s both;
}

.badge:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
  border-color: #4285f4;
}

.badge.html:hover {
  border-color: #e34c26;
  box-shadow: 0 8px 25px rgba(227, 76, 38, 0.4);
}

.badge.css:hover {
  border-color: #2965f1;
  box-shadow: 0 8px 25px rgba(41, 101, 241, 0.4);
}

.badge.js:hover {
  border-color: #f7df1e;
  box-shadow: 0 8px 25px rgba(247, 223, 30, 0.4);
}

.badge.php:hover {
  border-color: #777bb4;
  box-shadow: 0 8px 25px rgba(119, 123, 180, 0.4);
}

.badge.react:hover {
  border-color: #61dafb;
  box-shadow: 0 8px 25px rgba(97, 218, 251, 0.4);
}

/* ============================================
   BROWSER MOCKUP CON ANIMACIONES 3D
   ============================================ */
.browser-mockup {
  background: #fff;
  border-radius: 20px;
  border: 2px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(66, 133, 244, 0.2);
  max-width: 450px;
  min-width: 340px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  transform-origin: bottom right;
  animation: bounceFromCorner 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both,
    permanentBounce 2s ease-in-out 1.5s infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.browser-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
    0 15px 40px rgba(66, 133, 244, 0.3);
}

/* Efecto de brillo en el mockup */
.browser-mockup::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
  pointer-events: none;
  z-index: 100;
}

.browser-header {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-radius: 20px 20px 0 0;
  padding: 14px 18px 0 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 36px;
  border-bottom: 1px solid #e2e8f0;
}

.browser-controls {
  display: flex;
  gap: 8px;
  animation: fadeInDown 0.6s ease-out 0.8s both;
}

.control {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.control::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.control:hover::after {
  width: 100%;
  height: 100%;
}

.control.red {
  background: #ea4335;
  box-shadow: 0 2px 8px rgba(234, 67, 53, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.control.yellow {
  background: #fbbc05;
  box-shadow: 0 2px 8px rgba(251, 188, 5, 0.3);
  animation: pulse 2s ease-in-out 0.3s infinite;
}

.control.green {
  background: #34a853;
  box-shadow: 0 2px 8px rgba(52, 168, 83, 0.3);
  animation: pulse 2s ease-in-out 0.6s infinite;
}

.google-home {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 48px 20px 40px 20px;
  text-align: center;
}

.google-logo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -1px;
  animation: bounceIn 0.8s ease-out 1s both;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.google-logo:hover {
  transform: scale(1.1);
}

.google-logo .g {
  color: #4285f4;
  display: inline-block;
  animation: bounceIn 0.5s ease-out 1.1s both;
}

.google-logo .o {
  color: #ea4335;
  display: inline-block;
  animation: bounceIn 0.5s ease-out 1.2s both;
}

.google-logo .o2 {
  color: #fbbc05;
  display: inline-block;
  animation: bounceIn 0.5s ease-out 1.3s both;
}

.google-logo .g2 {
  color: #4285f4;
  display: inline-block;
  animation: bounceIn 0.5s ease-out 1.4s both;
}

.google-logo .l {
  color: #34a853;
  display: inline-block;
  animation: bounceIn 0.5s ease-out 1.5s both;
}

.google-logo .e {
  color: #ea4335;
  display: inline-block;
  animation: bounceIn 0.5s ease-out 1.6s both;
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
  animation: scaleIn 0.6s ease-out 1.2s both;
}

.search-input {
  width: 85%;
  max-width: 350px;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 28px;
  font-size: 1.05rem;
  outline: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34, 42, 54, 0.08);
  color: transparent;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.search-input:hover {
  border-color: #4285f4;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.2);
}

.search-input:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.1);
}

.search-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  animation: fadeInUp 0.6s ease-out 1.4s both;
}

.search-btn {
  background: #f8fafc;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(34, 42, 54, 0.06);
}

.search-btn:hover {
  background: #4285f4;
  color: #fff;
  border-color: #4285f4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.search-btn:active {
  transform: translateY(0);
}

.typewriter-text {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  color: #1e293b;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.3px;
  vertical-align: middle;
  height: 1.3em;
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE BANNER
   ============================================ */
@media (max-width: 900px) {
  .banner {
    flex-direction: column;
    padding: 60px 24px 40px 24px;
    min-height: 500px;
  }

  .banner-content {
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-desc {
    font-size: 1.1rem;
  }

  .browser-mockup {
    max-width: 100%;
    min-width: 280px;
  }

  .badges {
    gap: 8px;
  }

  .badge {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .banner {
    padding: 48px 16px 32px 16px;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-desc {
    font-size: 1rem;
  }

  .google-logo {
    font-size: 2.2rem;
  }
}

/* ============================================
   TECH STACK SLIDER
   ============================================ */
.tech-slider-section,
#vscode-mockup-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.tech-slider-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(66, 133, 244, 0.3) 50%,
      transparent 100%);
}

.tech-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.tech-slider-track {
  display: flex;
  gap: 60px;
  animation: continuousScroll 30s linear infinite;
  will-change: transform;
}

.tech-slider-track:hover {
  animation-play-state: paused;
}

.tech-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 110px;
  height: 110px;
}

.tech-slide:hover {
  transform: translateY(-8px) scale(1.05);
}

.tech-slide img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.tech-slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
  opacity: 1;
}

@keyframes continuousScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 10));
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tech-slider-section {
    padding: 40px 0;
  }

  .tech-slider-track {
    gap: 40px;
  }

  .tech-slide {
    min-width: 100px;
    height: 100px;
    padding: 15px;
  }

  .tech-slide img {
    width: 48px;
    height: 48px;
  }

  @keyframes slideInfinite {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-100px * 12 - 40px * 12));
    }
  }
}

/* ============================================
   IMPORT WEB DEVELOPMENT SECTION STYLES
   ============================================ */
@import url("web-dev-section.css");

/* ============================================
   NAVBAR TOGGLE RESPONSIVE
   ============================================ */

/* Botón Hamburguesa */
.nav-toggle {
  display: none;
  /* Oculto por defecto en desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #232a36;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animación cuando el menú está abierto */
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== RESPONSIVE (MÓVIL) ========== */
@media (max-width: 768px) {

  /* Mostrar botón hamburguesa */
  .nav-toggle {
    display: flex;
  }

  /* Menú de navegación como overlay */
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    /* Oculto a la derecha */
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow-y: auto;
    z-index: 1000;
  }

  /* Cuando está abierto */
  .nav-list.active {
    right: 0;
  }

  .nav-list li {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    display: block;
    width: 100%;
    font-size: 1.1rem;
  }

  /* Botón CTA en móvil se oculta o ajusta */
  .navbar .btn-cta {
    display: none;
  }

  /* Overlay oscuro cuando el menú está abierto */
  .nav-list.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

@media (max-width: 480px) {
  .navbar-nav {
    padding: 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }
}

/* ============================================
   MOCKUP VS CODE - SYNTAX HIGHLIGHTING
   ============================================ */

.code-line {
  display: flex;
  margin-bottom: 2px;
}

.line-number {
  color: #858585;
  min-width: 35px;
  text-align: right;
  padding-right: 15px;
  user-select: none;
}

.code-content {
  white-space: pre;
}

/* Colores de sintaxis VS Code Dark Theme */
.tag {
  color: #569cd6;
}

.attribute {
  color: #9cdcfe;
}

.string {
  color: #ce9178;
}

.keyword {
  color: #c586c0;
}

.comment {
  color: #6a9955;
  font-style: italic;
}

.function {
  color: #dcdcaa;
}

/* Cursor parpadeante */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 16px;
  background-color: #d4d4d4;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.service__shape img {
  position: absolute;
  right: 0;
  top: 100px;
  width: 300px;
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #4285f4, #6a5af9);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #6a5af9, #a855f7);
  top: 50%;
  right: 15%;
  animation-delay: 5s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #4285f4, #0ea5e9);
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}



/* ============================================
   TECH SLIDER - GRAYSCALE HOVER EFFECT
   ============================================ */
.tech-slide img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.tech-slide img:hover {
  filter: grayscale(0%);
}

/* Seccion Clientes */
.clients-slider-track {
  display: flex;
  gap: 20px;
  animation: slideInfiniteClients 45s linear infinite;
  will-change: transform;
}

.clients-slider-track:hover {
  animation-play-state: paused;
}

@keyframes slideInfiniteClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 9 - 20px * 9));
  }
}

/* Seccion Clientes */
.clients-slider-section {
  padding: 30px 0;
  background: #ffffff !important;
}

.clients-slider-track .tech-slide {
  background: transparent;
  box-shadow: none;
  min-width: 200px;
  height: 160px;
}

.clients-slider-track .tech-slide:hover {
  background: transparent;
  box-shadow: none;
}

.clients-slider-track .tech-slide img {
  width: 160px;
  height: 160px;
  mix-blend-mode: multiply;
}

/* Seccion Footer */
.footer-section {
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)),
    url("../../imagenes/bg/bg-contacto.jpg");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
  padding: 150px 0 20px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-info h3,
.footer-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  display: inline-block;
}

.footer-info p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: #cbd5e1;
  font-size: 1.1rem;
  /* Added font-size */
}

.contact-details li svg {
  width: 24px;
  height: 24px;
  stroke: #4285f4;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: #4285f4;
  transform: translateY(-4px);
  border-color: #4285f4;
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #4285f4;
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.1);
}

.submit-btn {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
}

.clients-slider-track:hover {
  animation-play-state: paused;
}

@keyframes slideInfiniteClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 9 - 20px * 9));
  }
}

/* Seccion Clientes */
.clients-slider-section {
  padding: 30px 0;
}

.clients-slider-track .tech-slide {
  background: transparent;
  box-shadow: none;
  min-width: 200px;
  height: 160px;
}

.clients-slider-track .tech-slide:hover {
  background: transparent;
  box-shadow: none;
}

.clients-slider-track .tech-slide img {
  width: 160px;
  height: 160px;
  mix-blend-mode: multiply;
}

/* Seccion Footer */
.footer-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url("../../imagenes/bg/bg-contacto.jpg");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
  padding: 150px 0 20px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-info h3,
.footer-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  display: inline-block;
}

.footer-info h3.highlight-gradient {
  color: #ffa631;
  font-size: 2rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
}

.footer-info p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.1rem;
}

.contact-details li svg {
  width: 24px;
  height: 24px;
  stroke: #ffa631;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: #4285f4;
  transform: translateY(-4px);
  border-color: #4285f4;
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* Formulario de Contacto */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ffa631;
 
}

.submit-btn {
  background: linear-gradient(135deg, #4285f4 0%, #6a5af9 100%);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Boton Regresar Arriba */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ffa631;
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: #ff9500;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Boton Whatsapp */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-btn svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* Seccion Portfolio */
.portfolio-area {
  background: #ffffff ;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}



.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.portfolio-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(66, 133, 244, 0.15);
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-btn {
  background: #ffffff;
  color: #1e293b;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-btn {
  transform: translateY(0);
}

.portfolio-btn:hover {
  background: #4285f4;
  color: #ffffff;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.portfolio-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.tech-badge {
  background: rgba(66, 133, 244, 0.08);
  color: #4285f4;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.portfolio-links {
  display: flex;
  gap: 15px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.btn-sm {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-demo {
  background: #4285f4;
  color: #ffffff;
}

.btn-demo:hover {
  background: #1967d2;
}

.btn-repo {
  background: transparent;
  color: #64748b;
  border: 1px solid #cbd5e1;
}

.btn-repo:hover {
  background: #f1f5f9;
  color: #1e293b;
  border-color: #94a3b8;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* Botones Sociales */
.social-btn-facebook svg,
.social-btn-github svg,
.social-btn-instagram svg {
  stroke: white;
}

.social-btn-facebook {
  background: linear-gradient(45deg, #1877f2, #3b5998);
  color: white;
  border: none;
}

.social-btn-facebook:hover {
  background: linear-gradient(45deg, #166fe5, #2d4373);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-btn-github {
  background: linear-gradient(45deg, #333333, #24292e);
  color: white;
  border: none;
}

.social-btn-github:hover {
  background: linear-gradient(45deg, #2b2b2b, #1b1f23);
  box-shadow: 0 5px 15px rgba(36, 41, 46, 0.4);
}

.social-btn-instagram {
  background: linear-gradient(45deg,
      #405de6,
      #5851db,
      #833ab4,
      #c13584,
      #e1306c,
      #fd1d1d);
  color: white;
  border: none;
}

.social-btn-instagram:hover {
  background: linear-gradient(45deg,
      #3a55d4,
      #4e48c8,
      #73339e,
      #ad2f76,
      #cc2b62,
      #e61a1a);
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

/* Ensure SVG color is white for these buttons */
.social-btn-facebook svg,
.social-btn-github svg,
.social-btn-instagram svg {
  stroke: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("../../imagenes/bg/accion-bg.jpeg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #cbd5e1;
}


/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("../../imagenes/bg/accion-bg.jpeg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #cbd5e1;
}

.faq-container {
  max-width: 900px;
  /* Increased width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Increased gap */
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  /* Increased radius */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 32px;
  /* Increased padding */
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  /* Increased size */
  height: 56px;
  /* Increased size */
  background: rgba(66, 133, 244, 0.1);
  border-radius: 14px;
  color: #4285f4;
  margin-right: 24px;
  /* Increased margin */
  flex-shrink: 0;
}

.faq-icon svg {
  width: 28px;
  /* Increased icon size */
  height: 28px;
  /* Increased icon size */
}

.question-text {
  flex: 1;
  font-size: 1.3rem;
  /* Increased font size */
  font-weight: 700;
  color: #1e293b;
}

.toggle-icon {
  color: #94a3b8;
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-icon svg {
  width: 24px;
  /* Increased icon size */
  height: 24px;
  /* Increased icon size */
}

.faq-question[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
  color: #4285f4;
}

.faq-question[aria-expanded="true"] .question-text {
  color: #4285f4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.answer-content {
  padding: 0 32px 32px 112px;
  /* Adjusted padding alignment */
  color: #64748b;
  line-height: 1.8;
  font-size: 1.1rem;
  /* Increased font size */
}

.answer-content ul {
  margin-top: 16px;
  padding-left: 20px;
}

.answer-content li {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 24px;
  }

  .answer-content {
    padding: 0 24px 24px 24px;
  }

  .faq-icon {
    display: none;
  }
}

.social-btn-github:hover {
  background: linear-gradient(45deg, #2b2b2b, #1b1f23);
  box-shadow: 0 5px 15px rgba(36, 41, 46, 0.4);
}

.social-btn-instagram {
  background: linear-gradient(45deg,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  color: white;
  border: none;
}

.social-btn-instagram:hover {
  background: linear-gradient(45deg,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

/* Ensure SVG color is white for these buttons */
.social-btn-facebook svg,
.social-btn-github svg,
.social-btn-instagram svg {
  stroke: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("../../imagenes/bg/accion-bg.jpeg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #cbd5e1;
}

.faq-container {
  max-width: 900px;
  /* Increased width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Increased gap */
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  /* Increased radius */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 32px;
  /* Increased padding */
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  /* Increased size */
  height: 56px;
  /* Increased size */
  background: rgba(66, 133, 244, 0.1);
  border-radius: 14px;
  color: #4285f4;
  margin-right: 24px;
  /* Increased margin */
  flex-shrink: 0;
}

.faq-icon svg {
  width: 28px;
  /* Increased icon size */
  height: 28px;
  /* Increased icon size */
}

.question-text {
  flex: 1;
  font-size: 1.3rem;
  /* Increased font size */
  font-weight: 700;
  color: #1e293b;
}

.toggle-icon {
  color: #94a3b8;
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-icon svg {
  width: 24px;
  /* Increased icon size */
  height: 24px;
  /* Increased icon size */
}

.faq-question[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
  color: #4285f4;
}

.faq-question[aria-expanded="true"] .question-text {
  color: #4285f4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.answer-content {
  padding: 0 32px 32px 112px;
  /* Adjusted padding alignment */
  color: #64748b;
  line-height: 1.8;
  font-size: 1.1rem;
  /* Increased font size */
}

.answer-content ul {
  margin-top: 16px;
  padding-left: 20px;
}

.answer-content li {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 24px;
  }

  .answer-content {
    padding: 0 24px 24px 24px;
  }

  .faq-icon {
    display: none;
  }

  .question-text {
    font-size: 1.1rem;
  }
}

/* Icono específico para el primer item del FAQ */
.faq-item:first-child .faq-question::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../../imagenes/Faq/dominio.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  margin-right: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .faq-item:first-child .faq-question::before {
    display: none;
  }
}

.answer-content li {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 24px;
  }

  .answer-content {
    padding: 0 24px 24px 24px;
  }

  .faq-icon {
    display: none;
  }

  .question-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .faq-item:first-child .faq-question::before {
    display: none;
  }
}

/* FAQ Item 2 Styles - Icono de Gmail a la izquierda */
.faq-item:nth-child(2) .faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-right: 24px;
  background-color: transparent;
  flex-shrink: 0;
  order: -1;
  /* Mover al principio (izquierda) */
}

.faq-item:nth-child(2) .faq-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-item:nth-child(2) .question-text {
  order: 0;
}

.faq-item:nth-child(2) .toggle-icon {
  order: 1;
}

@media (max-width: 768px) {
  .faq-item:nth-child(2) .faq-icon {
    display: none;
  }
}

/* ============================================
   SECCIÓN DE BÚSQUEDA DE DOMINIOS
   ============================================ */
.domain-search-wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 20;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.domain-search-form {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.domain-search-form:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(66, 133, 244, 0.2);
  border-color: rgba(66, 133, 244, 0.3);
}

.domain-search-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.domain-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 24px;
  font-size: 1.1rem;
  color: #1e293b;
  outline: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
}

.domain-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.domain-submit {
  background: #ffa631;
  color: #000000;
  border: none;
  padding: 16px 48px;
  border-radius: 0;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.domain-submit:hover {
  background: #ff9500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.domain-submit svg {
    width: 20px; 
    height: 20px;
    stroke-width: 2.5px;
}

@media (max-width: 768px) {
    .domain-search-wrapper {
        margin-top: 1.5rem;
        padding: 0 10px;
    }
    
    .domain-search-form {
        padding: 6px;
    }
    
    .domain-input {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .domain-submit {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .domain-submit span {
        display: none; 
    }
    
    .domain-submit svg {
        margin: 0;
    }
}

/* Resultados de búsqueda */
.domain-result {
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: none; /* Oculto por defecto */
}

.domain-result.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.domain-result.success {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.domain-result.taken {
    background: rgba(239, 68, 68, 0.15);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.domain-result.error {
    background: rgba(234, 179, 8, 0.15);
    color: #a16207;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.domain-result.loading {
    background: rgba(255, 255, 255, 0.5);
    color: #475569;
}

/* Spinner animado simple */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(66, 133, 244, 0.3);
    border-radius: 50%;
    border-top-color: #4285f4;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

