/* ============================================
   ThemeEwa - Espaniz WhatsApp Theme
   Colors: Black, Gold, Red (WhatsApp Green)
   ============================================ */

:root {
  --primary-color: #000000;
  --secondary-color: #D4AF37;
  --accent-color: #DC143C;
  --whatsapp-color: #25D366;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
  padding-top: 80px;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Navigation - Same as ThemeDefault */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex !important;
  list-style: none !important;
  gap: 2rem;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
  flex-direction: row !important;
  position: relative;
  overflow: visible;
}

/* Assurer que les éléments du menu sont bien en ligne sur desktop */
.nav-menu > li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--whatsapp-color);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  display: block;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Language Selector - Same as ThemeDefault */
.language-selector-wrapper {
  position: relative;
  margin-left: 1rem;
}

.language-selector {
  position: relative;
  display: inline-block;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  pointer-events: none;
}

.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.language-option:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
  color: white;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

/* .hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
} */

.hero-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.hero-benefits {
  list-style: none;
  margin-bottom: 2.5rem;
}

.hero-benefits li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-benefits i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.illustration-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

.placeholder-content {
  text-align: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 4rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--whatsapp-color) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-bullets {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
  padding: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets li {
  padding: 0.75rem 0;
  color: white;
  font-size: 1.1rem;
}

.hero-bullets i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* Section Styles */
section {
  padding: 2rem 0;
  width: 100%;
  display: block;
  position: relative;
  clear: both;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Para quién Section */
.para-quien-section {
  background: white;
}

.professionals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.professional-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.professional-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.professional-card i {
  font-size: 3rem;
  color: var(--whatsapp-color);
  margin-bottom: 1rem;
}

.professional-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
}

.not-for-section {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.not-for-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(220, 20, 60, 0.1);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.not-for-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.not-for-item p {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

/* Problem Section */
.problema-section {
  background: var(--bg-light);
}

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.problema-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.problema-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.problema-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.problema-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
}

.problema-resultado {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  border: 2px solid var(--accent-color);
}

.resultado-text {
  font-size: 1.3rem;
  margin: 0;
  color: var(--text-dark);
}

.problema-list {
  list-style: none;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0;
}

.problema-list li {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: white;
  border-left: 4px solid var(--accent-color);
  border-radius: 5px;
  font-size: 1.1rem;
}

/* Solution Section */
.solucion-section {
  background: white;
}

.solucion-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--whatsapp-color));
  color: white;
  transform: translateX(10px);
}

.feature-item i {
  color: var(--whatsapp-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-item:hover i {
  color: white;
}

.feature-item p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.feature-item:hover p {
  color: white;
}

.solucion-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--whatsapp-color));
  color: white;
  border-radius: 15px;
}

.solucion-note p {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.solucion-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.solucion-list {
  list-style: none;
  text-align: left;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0;
}

.solucion-list li {
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.solucion-list i {
  color: var(--whatsapp-color);
  margin-right: 0.75rem;
}

/* Como Funciona Section */
.como-funciona-section {
  background: var(--bg-light);
}

.pasos-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem 0;
}

.paso-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
}

.paso-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.paso-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--whatsapp-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.paso-content h3 {
  color: var(--text-dark);
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}

.paso-arrow {
  color: var(--whatsapp-color);
  font-size: 2rem;
  flex-shrink: 0;
}

.como-funciona-image {
  margin-top: 3rem;
  text-align: center;
}

.como-funciona-image img {
  max-width: 50%;
  height: auto;
  border-radius: 15px;
}

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.paso-item p {
  color: var(--text-dark);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Funcionalidades Section */
.funcionalidades-section {
  background: white;
}

.funcionalidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.funcionalidad-item {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.funcionalidad-item:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--whatsapp-color));
  color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.funcionalidad-item i {
  font-size: 3rem;
  color: var(--whatsapp-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.funcionalidad-item:hover i {
  color: white;
  transform: scale(1.1);
}

.funcionalidad-item h3 {
  color: var(--text-dark);
  margin: 0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.funcionalidad-item:hover h3 {
  color: white;
}

.funcionalidad-item:hover p {
  color: white;
}

.funcionalidad-item p {
  color: var(--text-dark);
  margin-top: 0.5rem;
}

.control-despacho-image {
  margin-top: 3rem;
  text-align: center;
}

.control-despacho-image img {
  max-width: 50%;
  height: auto;
  border-radius: 15px;
}

/* Modulos Section */
.modulos-section {
  background: var(--bg-light);
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.modulo-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.modulo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.modulo-item i {
  font-size: 3rem;
  color: var(--whatsapp-color);
  margin-bottom: 1rem;
}

.modulo-item h3 {
  color: var(--text-dark);
  margin: 0;
  font-size: 1.1rem;
}

.modulos-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Pricing Section */
.precios-section {
  background: white;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.plan-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid var(--border-color);
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.plan-recommended {
  border: 3px solid var(--whatsapp-color);
  transform: scale(1.05);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary-color), var(--whatsapp-color));
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.plan-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.plan-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--whatsapp-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
  margin-left: 0.25rem;
}

.plan-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-features i {
  color: var(--whatsapp-color);
  font-size: 1.1rem;
}

.instalacion-section {
  margin-top: 4rem;
}

.instalacion-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--bg-light), white);
  border-radius: 20px;
  border: 2px solid var(--secondary-color);
  text-align: center;
}

.instalacion-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.instalacion-card > p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.instalacion-card ul {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  padding: 0;
}

.instalacion-card li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.instalacion-card i {
  color: var(--whatsapp-color);
}

.instalacion-price {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.modulos-adicionales {
  margin-top: 3rem;
  text-align: center;
}

.modulos-adicionales h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.modulo-adicional-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  border: 2px dashed var(--border-color);
}

.modulo-adicional-card i {
  font-size: 3rem;
  color: var(--whatsapp-color);
  margin-bottom: 1rem;
}

.modulo-adicional-card p {
  margin: 0.5rem 0;
  color: var(--text-dark);
}

.modulo-price {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--whatsapp-color);
  margin-top: 1rem;
}

/* Pricing Section (old) */
.pricing-section {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid var(--border-color);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 3px solid var(--whatsapp-color);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--whatsapp-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--whatsapp-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
}

.pricing-features i {
  color: var(--whatsapp-color);
  margin-right: 0.5rem;
}

/* What Not Section */
.no-hace-section {
  background: var(--bg-light);
}

.no-hace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.no-hace-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.no-hace-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.no-hace-item i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.no-hace-item p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.what-not-section {
  background: var(--bg-light);
  text-align: center;
}

.what-not-list {
  list-style: none;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0;
}

.what-not-list li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.what-not-list i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

/* Security Section */
.seguridad-section {
  background: white;
}

.seguridad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.seguridad-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.seguridad-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--success-color);
}

.seguridad-item i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.seguridad-item h3 {
  color: var(--text-dark);
  margin: 0;
  font-size: 1.1rem;
}

.security-section {
  background: white;
  text-align: center;
}

.security-list {
  list-style: none;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0;
}

.security-list li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.security-list i {
  color: var(--success-color);
  margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
}

.faq-question i {
  color: var(--whatsapp-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.footer-note {
  margin-top: 1rem;
  font-style: italic;
  font-size: 0.9rem;
}

/* CTA Final Section */
.cta-final-section {
  background: linear-gradient(135deg, var(--primary-color), #1a1a1a);
  color: white;
  text-align: center;
}

.cta-final-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--whatsapp-color);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

#contactResponse {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

/* Responsive Design */

/* Tablette et petits écrans */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .hero-section .container {
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .planes-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .pasos-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .paso-item {
    min-width: 160px;
    max-width: 200px;
  }
}

/* Tablettes */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .container {
    padding: 0 15px;
  }

  /* Navigation Mobile */
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav-menu {
    position: fixed !important;
    top: 70px;
    left: -100%;
    width: 100% !important;
    height: calc(100vh - 70px);
    background: white;
    display: flex !important;
    flex-wrap: wrap;
    flex-direction: column !important;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    gap: 0 !important;
    align-items: stretch !important;
    justify-content: flex-start;
    list-style: none !important;
    
  }

  .nav-menu li {
    width: 100% !important;
    margin-bottom: 0.5rem;
    display: block;
    padding: 0;
  }

  .nav-link {
    display: block !important;
    padding: 1rem 0 !important;
    font-size: 1.1rem;
    width: 100% !important;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-dark);
    transition: all 0.3s ease;
    margin-left: 13px;
  }

  .nav-link:hover {
    color: var(--whatsapp-color);
    padding-left: 1rem;
    background: var(--bg-light);
  }

  .nav-menu.active {
    left: 0;
  }

  .language-selector-wrapper {
    margin-left: 0 !important;
    width: 100% !important;
    margin-top: 1rem;
    display: block;
  }

  .language-selector {
    width: 100%;
  }

  .language-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .language-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    display: none;
  }

  .language-selector.active .language-dropdown {
    display: block;
  }

  /* Hero Section */
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

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

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

  .hero-benefits {
    text-align: left;
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Sections */
  section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

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

  /* Grids */
  .professionals-grid,
  .problemas-grid,
  .funcionalidades-grid,
  .modulos-grid,
  .no-hace-grid,
  .seguridad-grid,
  .planes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solucion-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Pasos */
  .pasos-container {
    flex-direction: column;
    gap: 1rem;
  }

  .paso-item {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }

  .paso-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  /* Pricing */
  .plan-card {
    padding: 2rem 1.5rem;
  }

  .plan-recommended {
    transform: scale(1);
    margin-top: 0;
  }

  .recommended-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  /* Instalación */
  .instalacion-card {
    padding: 2rem 1.5rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section ul {
    text-align: center;
  }

  .footer-section ul li {
    display: inline-block;
    margin: 0 0.5rem 0.5rem 0;
  }

  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer-note {
    font-size: 0.85rem;
    margin-top: 0.75rem;
  }

  /* CTA */
  .cta-final-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Contact */
  .contact-form {
    padding: 2rem 1.5rem;
  }

  /* Not for section */
  .not-for-section {
    flex-direction: column;
    gap: 1rem;
  }

  .not-for-item {
    width: 100%;
    justify-content: center;
  }

  /* Problema resultado */
  .problema-resultado {
    padding: 1.5rem;
  }

  .resultado-text {
    font-size: 1.1rem;
  }

  /* Solucion note */
  .solucion-note {
    padding: 1.5rem;
  }

  .solucion-note p {
    font-size: 1rem;
  }

  /* Modulos note */
  .modulos-note {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Mobile petits écrans */
@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .container {
    padding: 0 10px;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .nav-wrapper {
    padding: 0.5rem 0;
  }

  .logo-img {
    height: 35px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 1.5rem;
  }

  .nav-menu li {
    margin-bottom: 0.25rem;
  }

  .nav-link {
    padding: 0.875rem 0 !important;
    font-size: 1rem;
  }

  /* Hero */
  .hero-section {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

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

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .hero-benefits li {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  /* Sections */
  section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Cards */
  .professional-card,
  .problema-card,
  .funcionalidad-item,
  .modulo-item,
  .seguridad-item {
    padding: 1.5rem;
  }

  .professional-card i,
  .problema-card i,
  .funcionalidad-item i,
  .modulo-item i,
  .seguridad-item i {
    font-size: 2.5rem;
  }

  /* Feature items */
  .feature-item {
    padding: 1.25rem;
  }

  .feature-item p {
    font-size: 1rem;
  }

  /* Pasos */
  .paso-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .paso-content h3 {
    font-size: 0.9rem;
  }

  /* Pricing */
  .plan-card {
    padding: 1.5rem 1rem;
  }

  .plan-header h3 {
    font-size: 1.3rem;
  }

  .plan-subtitle {
    font-size: 0.85rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .plan-features li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }

  /* Instalación */
  .instalacion-card {
    padding: 1.5rem 1rem;
  }

  .instalacion-card h3 {
    font-size: 1.2rem;
  }

  .instalacion-card li {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .footer-note {
    font-size: 0.8rem;
  }

  /* CTA */
  .cta-final-content h2 {
    font-size: 1.5rem;
  }

  /* Contact */
  .contact-form {
    padding: 1.5rem 1rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.65rem;
  }

  /* FAQ */
  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .price-amount {
    font-size: 1.75rem;
  }

  .plan-card,
  .instalacion-card {
    padding: 1.25rem 0.75rem;
  }
}

