/* Variables CSS */
:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  --orange-gradient: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-light: rgba(255, 255, 255, 0.9);
  --surface: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.15);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 20px;
  --transition: all 0.3s ease;
}

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Utilidades */
.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* SOLUCIÓN TEMPORAL - AGREGAR AL INICIO */
.logo-text, .footer-logo-text {
  opacity: 1 !important;
  font-family: 'GetVoIP Grotesque', 'Inter', sans-serif !important;
  font-style: italic !important;
  font-weight: 800 !important;
}
/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: var(--transition);
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ff4500;
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-container {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
  transition: var(--transition);
  background: white; /* Fondo blanco para la imagen */
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Cambiado de cover a contain para mostrar toda la imagen */
  object-position: center;
  display: block;
  transition: var(--transition);
  background: rgb(247, 11, 11);
}

/* Fallback icon - se muestra solo si la imagen no carga */
.logo-icon-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange-gradient);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.logo-text {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  white-space: nowrap;
}

/* Hover effects */
.logo:hover .logo-container {
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
  transform: rotate(2deg);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

/* Loading state */
.logo-container.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #ff4500;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

.logo-img.loaded {
  opacity: 1;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #ff4500;
}

.cta-button {
  padding: 14px 28px;
  background: var(--orange-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--dark-gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-line {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-content .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  padding: 18px 36px;
  background: var(--accent-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary {
  padding: 18px 36px;
  background: transparent;
  color: white;
  border: 2px solid var(--glass);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-visual {
  position: relative;
  height: 600px;
}

.floating-elements {
  position: relative;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  color: white;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
  transition: var(--transition);
  cursor: pointer;
  min-width: 200px;
}

.floating-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.floating-card .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.floating-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 5%;
  right: 0;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 4s;
}

.card-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 1s;
}

/* Sections */
section {
  padding: 6rem 5%;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mission {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.mission-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.mission-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.pillars h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pillar-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: var(--transition);
}

.pillar-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.pillar-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Services Section */
.services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.service-card > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.service-features i {
  color: #22c55e;
  font-size: 0.9rem;
}

.service-cta {
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.service-cta:hover {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
}

/* Success Cases Section */
.success-cases {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.case-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.case-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.case-name {
  font-size: 2rem;
  font-weight: 800;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-category {
  background: var(--accent-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.case-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.case-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.case-challenges {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.case-challenges h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.case-challenges ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.case-challenges li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.case-challenges li::before {
  content: '✓';
  color: #22c55e;
  font-weight: bold;
}

.testimonial {
  background: var(--dark-gradient);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  position: relative;
  font-style: italic;
  line-height: 1.6;
}

.testimonial i {
  font-size: 2rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  opacity: 0.8;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.result-item {
  text-align: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
}

.result-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Clients and Partners Section */
.clients-partners {
  background: white;
}

.clients-section, .partners-section {
  margin-bottom: 4rem;
}

.clients-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.client-logo {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-gradient);
}

.client-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.client-sector {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.partner-logo {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.partner-logo.certified {
  border-color: #4285f4;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  color: white;
}

.partner-icon {
  font-size: 2rem;
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 12px;
}

.certified .partner-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.partner-info {
  display: flex;
  flex-direction: column;
}

.partner-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.certified .partner-name {
  color: white;
}

.partner-level {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.certified .partner-level {
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.contact-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-content a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-content a:hover {
  color: #ff4500;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff4500;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  margin-top: 1rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Footer */
.footer {
  background: var(--dark-gradient);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

/* Footer Logo - Corregido para usar la misma estructura del header */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-container {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.footer-logo .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer-logo .logo-icon-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange-gradient);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-tagline {
  color: var(--text-light);
  font-style: italic;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.8;
}

.footer-links a:hover {
  color: #ff4500;
  opacity: 1;
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  opacity: 0.9;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: #ff4500;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #ff4500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-legal a:hover {
  opacity: 1;
  color: #ff4500;
}

.footer-copyright {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 3rem;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-hover);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.close:hover {
  color: #ff4500;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--orange-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 1000;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.scroll-to-top.show {
  display: flex;
}

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

/* Error states */
.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-container,
  .section-container {
    padding-left: 3%;
    padding-right: 3%;
  }
  
  .hero-container {
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .header-container {
    padding: 1rem 5%;
    position: relative;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
    padding: 2rem;
    z-index: 1000;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .cta-button {
    display: none;
  }

  /* Logo responsive */
  .logo {
    font-size: 1.5rem;
    gap: 0.5rem;
  }
  
  .logo-container {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }

  /* Hero Mobile */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 6rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-visual {
    height: 400px;
    order: -1;
  }

  .floating-card {
    min-width: 160px;
    padding: 1rem;
  }

  .floating-card h4 {
    font-size: 1rem;
  }

  .floating-card p {
    font-size: 0.8rem;
  }

  /* Sections Mobile */
  section {
    padding: 4rem 5%;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  /* About Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission {
    flex-direction: column;
    text-align: center;
  }

  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  /* Contact Mobile */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  /* Clients Mobile */
  .clients-carousel {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .client-logo {
    padding: 1.5rem;
  }

  .client-name {
    font-size: 1.2rem;
  }

  /* Partners Mobile */
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .partner-logo {
    padding: 1.5rem;
  }

  /* Case Studies Mobile */
  .case-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .case-results {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-challenges ul {
    grid-template-columns: 1fr;
  }

  /* Modal Mobile */
  .modal-content {
    margin: 10% auto;
    padding: 2rem;
    width: 95%;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.3rem;
  }
  
  .logo-container {
    width: 35px;
    height: 35px;
  }
  
  .logo-text {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .floating-card {
    min-width: 140px;
    padding: 0.75rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .case-card {
    padding: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .result-number {
    font-size: 2rem;
  }

  .case-results {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .floating-elements,
  .modal,
  .scroll-to-top {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }

  .service-card,
  .case-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card,
  .case-card,
  .contact-form {
    border: 2px solid var(--text-primary);
  }

  .btn-primary,
  .btn-secondary,
  .cta-button {
    border: 2px solid;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .contact-form,
  .service-card,
  .case-card {
    background: #1a202c;
    color: white;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: #2d3748;
    border-color: #4a5568;
    color: white;
  }
}

/* Cargar la fuente GetVoIP Grotesque Italic */
@font-face {
  font-family: 'GetVoIP Grotesque';
  src: url('fonts/GetVoIP-Grotesque-Italic.woff2') format('woff2'),
       url('fonts/GetVoIP-Grotesque-Italic.woff') format('woff'),
       url('fonts/GetVoIP-Grotesque-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap; /* Mejora la carga de la fuente */
}

/* Aplicar la fuente al texto del logo */
.logo-text {
  font-family: 'GetVoIP Grotesque', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: italic;
  font-weight: 800;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  letter-spacing: -0.02em; /* Ajuste tipográfico para GetVoIP */
}

/* Footer logo text */
.footer-logo-text {
  font-family: 'GetVoIP Grotesque', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Ajustes responsive para la nueva fuente */
@media (max-width: 768px) {
  .logo-text {
    font-size: 1.2rem;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

/* Preloader para la fuente */
.logo-text {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-text.font-loaded {
  opacity: 1;
}