/* ========================================
   BORTECH - DISEÑO PROFESIONAL ESTILO iOS
   2025 - UX/UI Premium
   ======================================== */

/* ========================================
   TIPOGRAFÍA Y FUENTES
   ======================================== */
@font-face { 
  font-family: 'CharlevoixPro';
  src: url('fonts/CharlevoixPro-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'CharlevoixPro';
  src: url('fonts/CharlevoixPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'CharlevoixPro';
  src: url('fonts/CharlevoixPro-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'MonumentExtended';
  src: url('fonts/MonumentExtended-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Supply';
  src: url('fonts/Supply-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* ========================================
   VARIABLES CSS - TEMA iOS
   ======================================== */
:root {
  /* Colores */
  --primary-color: #2dd5c4;
  --primary-dark: #1eba9f;
  --secondary-color: #7f1bbf;
  --accent-color: #a832a6;
  --dark-bg: #0f0f0f;
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-bg-hover: rgba(255, 255, 255, 0.12);
  --border-color: rgba(255, 255, 255, 0.12);
  --border-color-light: rgba(255, 255, 255, 0.18);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-tertiary: rgba(255, 255, 255, 0.45);
  
  /* Blur y sombras */
  --blur-sm: 8px;
  --blur-md: 12px;
  --blur-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.24);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.3);
  
  /* Transiciones */
  --transition-quick: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-ease: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Espaciado */
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --gap-2xl: 64px;
}

/* ========================================
   RESET Y BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0f2e 100%);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Supply', 'CharlevoixPro', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ========================================
   TIPOGRAFÍA - JERARQUÍA VISUAL
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'CharlevoixPro', 'MonumentExtended', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: var(--gap-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--gap-sm);
}

/* ========================================
   SECCIONES
   ======================================== */
section {
  width: 100%;
  min-height: auto;
  padding: 0px 40px;
  box-sizing: border-box;
  position: relative;
  margin-top: 0;
}

@media (max-width: 768px) {
  section {
    padding: 50px 24px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 16px;
  }
}

/* ========================================
   CONTENEDOR NAVBAR - FLEX LAYOUT
   ======================================== */
.container-14 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex: 1;
}

/* ========================================
   NAVBAR - ESTILO iOS COMPACTO
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(15, 15, 15, 0.85);
  border-bottom: 1px solid rgba(45, 213, 196, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  height: 60px;
  display: flex;
  align-items: center;
}

.navbar-logo-left-container-2 {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all var(--transition-quick);
  position: relative;
  gap: 0;
}

@media (max-width: 1024px) {
  .navbar-logo-left-container-2 {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .navbar-logo-left-container-2 {
    padding: 0 16px;
  }
}

.navbar-wrapper-4 {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
  order: 1;
  z-index: 10;
}

.navbar-brand-4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-quick);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-brand-4:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 38px;
  height: 38px;
  transition: transform var(--transition-quick);
  display: block;
}

.navbar-brand-4:hover .footer-logo img {
  transform: scale(1.05);
}

.nav-menu-wrapper-4 {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
  position: relative;
  order: 2;
  z-index: 5;
}

.nav-menu-two-2 {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.navbar-buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  margin-left: auto;
  order: 3;
  z-index: 10;
}

.nav-link-4 {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-quick);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-link-4:hover,
.nav-link-4.w--current {
  color: var(--primary-color);
}

.nav-link-4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-quick);
  border-radius: 1px;
}

.nav-link-4:hover::after,
.nav-link-4.w--current::after {
  width: 100%;
}

.nav-link-accent-2 {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 0.95rem;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition-quick);
  padding: 8px 0;
}

.nav-link-accent-2:hover {
  color: #fff;
  opacity: 0.8;
}

.navbar-buttons-wrapper .nav-link-accent-2 {
  padding: 4px 8px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  transition: all var(--transition-quick);
}

.navbar-buttons-wrapper .nav-link-accent-2:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
}

.nav-divider-2 {
  width: 1px;
  height: 18px;
  background: var(--border-color-light);
  display: none;
}

@media (max-width: 768px) {
  .nav-divider-2 {
    display: none !important;
  }
}

.button-primary-5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, #17c9ae 100%);
  color: var(--dark-bg);
  padding: 4px 8px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-quick);
  box-shadow: 0 4px 16px rgba(45, 213, 196, 0.3);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.button-primary-5:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 213, 196, 0.4);
}

.button-primary-5:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .nav-menu-wrapper-4 {
    display: none;
    position: fixed !important;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(20, 20, 35, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 20px;
    z-index: 1001;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    border-top: 1px solid rgba(45, 213, 196, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateX(0);
    left: auto;
  }

  .nav-menu-wrapper-4.active {
    display: flex;
  }

  .nav-menu-two-2 {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .nav-menu-two-2 li {
    width: 100%;
  }

  .nav-link-4 {
    padding: 14px 16px;
    display: block;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all var(--transition-quick);
    border-bottom: none;
  }

  .nav-link-4:hover,
  .nav-link-4.w--current {
    color: var(--primary-color);
    background: rgba(45, 213, 196, 0.1);
  }

  .navbar-buttons-wrapper {
    display: none;
  }
}

  .nav-link-4 {
    padding: 14px 16px;
    display: block;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all var(--transition-quick);
    border-bottom: none;
  }

  .nav-link-4:hover,
  .nav-link-4.w--current {
    color: var(--primary-color);
    background: rgba(45, 213, 196, 0.1);
  }


.menu-button-4 {
  display: none;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  border: none;
  background: rgba(45, 213, 196, 0.1);
  padding: 10px 12px;
  border-radius: 10px;
  transition: all var(--transition-quick);
  border: 1px solid rgba(45, 213, 196, 0.2);
}

.menu-button-4:hover {
  background: rgba(45, 213, 196, 0.15);
  border-color: rgba(45, 213, 196, 0.3);
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .menu-button-4 {
    display: flex;
  }
}

/* ========================================
   HERO SECTION - CENTRADO Y OPTIMIZADO
   ======================================== */
#Inicio {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 30px 60px;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  #Inicio {
    min-height: auto;
    padding: 60px 24px 60px;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  #Inicio {
    min-height: auto;
    padding: 40px 20px 40px;
    margin-top: 60px;
  }
}

#Inicio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(45, 213, 196, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(127, 27, 191, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-subscribe-left {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.container-8 {
  width: 100%;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 60px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-split {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-split:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.heading-9 {
  animation: fadeInUp 0.8s ease-out 0.1s both;
  margin-bottom: 16px;
}

.heading-8 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.tablet-mockup {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #f5f5f5, #ffffff5e);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.tablet-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 15px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.tablet-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff, #fafafa);
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 10px 10px;
  text-align: center;
}

.tablet-screen input {
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.tablet-screen input::placeholder {
  color: #ccc;
}

.tablet-screen input:focus {
  outline: none;
  background: #fff;
  border-color: #2dd5c4 !important;
  box-shadow: 0 0 0 2px rgba(45, 213, 196, 0.1);
}

.tablet-screen button {
  transition: all 0.2s ease;
}

.tablet-screen button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(127, 27, 191, 0.25);
}

.tablet-screen button:active {
  transform: translateY(0);
}

.tablet-screen a {
  transition: color 0.3s ease;
}

.tablet-screen a:hover {
  color: #2dd5c4 !important;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-form {
  margin-top: 24px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

@media (min-width: 1800px) {
  .tablet-mockup {
    max-width: 280px;
  }
}

@media (min-width: 1400px) and (max-width: 1799px) {
  .tablet-mockup {
    max-width: 320px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .tablet-mockup {
    max-width: 360px;
  }
}

@media (max-width: 1200px) {
  .hero-wrapper {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-split:last-child {
    order: -1;
  }

  .tablet-mockup {
    max-width: 350px;
  }

  h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .heading-8 {
    font-size: 1rem;
  }

  .tablet-mockup {
    display: none;
  }

  h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  #Inicio {
    padding: 50px 16px 30px;
  }

  .hero-wrapper {
    gap: 20px;
  }

  .tablet-mockup {
    max-width: 250px;
  }

  h1 {
    font-size: 1.4rem;
  }
}

/* ========================================
   BOTONES Y ELEMENTO INTERACTIVOS
   ======================================== */
button,
.w-button,
.select-btn,
.see-more-btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  font-family: inherit;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

button:hover,
.w-button:hover,
.select-btn:hover {
  transform: translateY(-3px);
}

button:active,
.w-button:active,
.select-btn:active {
  transform: translateY(-1px);
}

/* Botón primario */
.button-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #17c9ae 100%);
  color: var(--dark-bg);
  box-shadow: 0 4px 16px rgba(45, 213, 196, 0.3);
}

.button-primary:hover {
  box-shadow: 0 8px 24px rgba(45, 213, 196, 0.4);
}

/* ========================================
   TARJETAS DE BENEFICIOS
   ======================================== */
.benefits-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-lg);
  margin-top: var(--gap-xl);
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 213, 196, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: var(--card-bg-hover);
  border-color: var(--border-color-light);
  box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  margin-bottom: var(--gap-md);
}

.benefit-icon img {
  width: 56px;
  height: 56px;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-smooth);
}

.benefit-card:hover .benefit-icon img {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--gap-sm);
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--gap-md);
  }

  .benefit-card {
    padding: 24px 16px;
  }
}

/* ========================================
   SECCIÓN DE PLANES
   ======================================== */
#planes {
  background: #000;
}

.container-planes {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.animate-planes-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--gap-xl);
  animation: fadeInUp 0.8s ease-out;
}

.animate-planes-title h2 {
  margin-bottom: 0;
}

.planes-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-xl);
  margin-top: var(--gap-xl);
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px 32px;
  color: var(--text-primary);
  text-align: center;
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  animation: fadeInUp 0.6s ease-out;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.plan-card:hover {
  transform: translateY(-12px);
  background: var(--card-bg-hover);
  border-color: var(--primary-color);
  box-shadow: 0 12px 48px rgba(45, 213, 196, 0.2);
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card.highlighted {
  border-color: var(--primary-color);
  background: rgba(45, 213, 196, 0.1);
  transform: scale(1.02);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
}

.plan-features {
  list-style: none;
  margin-bottom: var(--gap-lg);
  text-align: left;
}

.plan-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 700;
  margin-right: var(--gap-sm);
}

.select-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #17c9ae 100%);
  color: var(--dark-bg);
  width: 100%;
  padding: 14px 24px;
  margin-top: var(--gap-lg);
  box-shadow: 0 4px 16px rgba(45, 213, 196, 0.3);
}

.select-btn:hover {
  box-shadow: 0 8px 24px rgba(45, 213, 196, 0.4);
}

@media (max-width: 768px) {
  .planes-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 28px 20px;
  }
}

/* ========================================
   SECCIÓN DE CONTACTO
   ======================================== */
.contact-section {
  background: #000;
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  animation: fadeInUp 0.8s ease-out;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.w-form {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-primary);
  margin-bottom: var(--gap-md);
  transition: all var(--transition-smooth);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-tertiary);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--card-bg-hover);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 213, 196, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.contact-info ul {
  list-style: none;
}

.contact-info ul li {
  color: var(--text-secondary);
  padding: 8px 0;
  transition: all var(--transition-quick);
}

.contact-info ul li:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border-color);
  padding: var(--gap-xl) 40px;
  margin-top: var(--gap-2xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-lg);
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer nav a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-quick);
  font-size: 0.95rem;
}

.footer nav a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border-radius: 10px;
  color: var(--text-primary);
  transition: all var(--transition-quick);
  border: 1px solid var(--border-color);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.footer-copy {
  color: var(--text-tertiary);
  text-align: center;
  padding-top: var(--gap-lg);
  border-top: 1px solid var(--border-color);
  margin-top: var(--gap-lg);
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .footer {
    padding: var(--gap-lg) 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ANIMACIONES Y EFECTOS
   ======================================== */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.animate-on-scroll.active {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ========================================
   RESPONSIVE Y MEDIA QUERIES
   ======================================== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  section {
    padding: 40px 16px;
  }

  .hero-wrapper {
    gap: 30px;
  }
}

/* ========================================
   ACCESIBILIDAD
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible para navegación por teclado */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Webflow base styles */
.w-button {
  color: var(--text-primary);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 4px 8px;
  font-weight: 400;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.w-button:hover {
  background: var(--card-bg-hover);
  border-color: var(--primary-color);
}

.w-nav-overlay {
  display: none !important;
}

@media (max-width: 991px) {
  .w-nav-overlay {
    display: none !important;
  }
}
