/* ===== VARIABLES ACTUALIZADAS ===== */
:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #1d3557;
  --accent: #457b9d;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
  
  --success: #28a745;
  --warning: #ffc107;
  --info: #17a2b8;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ===== TOPBAR ===== */
.topbar {
  background-color: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-phone, .topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-phone a {
  color: #f1faee;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}

.topbar-phone a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  font-size: 0.8rem;
}

.topbar-social a:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ===== HEADER ===== */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--light-gray);
  transition: var(--transition);
}

.logo:hover img {
  border-color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1;
  font-weight: 500;
}

/* ===== NAVEGACIÓN ===== */
.nav {
  transition: var(--transition);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--dark);
}

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

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

.nav-link.active {
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 57, 70, 0.4);
}

/* ===== MENÚ HAMBURGUESA ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* ===== BOTONES ===== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(29, 53, 87, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, #2a4a7a 50%, var(--accent) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

.slide-content {
  flex: 1;
  max-width: 580px;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #f1faee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 400;
  max-width: 90%;
}

.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badge i {
  color: #ffd700;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.slide-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.1;
}

.slide-image img {
  max-height: 500px;
  border-radius: var(--radius-lg);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  object-fit: cover;
  width: 100%;
  max-width: 550px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.slide-image:hover img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ===== SECTIONS GENERAL ===== */
section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== WELCOME SECTION ===== */
.welcome {
  background-color: var(--light);
  position: relative;
}

.welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--light-gray) 50%, transparent 100%);
}

.welcome-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.welcome-text {
  flex: 1;
}

.welcome-text p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.8;
  text-align: justify;
  color: var(--dark);
}

/* MÉTODOS DE PAGO */
.payment-methods {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--success);
  box-shadow: var(--shadow);
}

.payment-methods h4 {
  color: var(--secondary);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid #e9ecef;
  flex: 1 1 calc(33.333% - var(--space-md));
  min-width: 180px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payment-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-option i {
  color: var(--success);
  font-size: 1.4rem;
}

.payment-option span {
  font-weight: 600;
  color: #495057;
}

/* FACTURACIÓN */
.facturacion-info {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #e8f4fd 0%, #d4edff 100%);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--info);
  box-shadow: var(--shadow);
}

.facturacion-info h4 {
  color: var(--secondary);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.facturacion-info p {
  color: #495057;
  margin: 0;
  line-height: 1.6;
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature h4 {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 700;
}

.feature p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.welcome-image {
  flex: 1;
  position: relative;
}

.welcome-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.welcome-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--light-gray) 50%, transparent 100%);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::after {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--light) 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  border: 3px solid transparent;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.service-card:hover .service-icon i {
  color: white;
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2.2rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.service-card h3 {
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(230, 57, 70, 0.1);
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
  background: rgba(230, 57, 70, 0.15);
  transform: translateX(5px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(29, 53, 87, 0.03) 0%, transparent 50%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: var(--radius-lg);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-left: 5px solid var(--primary);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: var(--light-gray);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.7;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1.1rem;
  color: var(--dark);
  position: relative;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.testimonial-author {
  border-top: 1px solid var(--light-gray);
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author strong {
  color: var(--secondary);
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== FAQ SECTION ===== */
.faq {
  background-color: var(--white);
}

.faq-items {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  background-color: var(--white);
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--light);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 600;
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
  font-size: 1.1rem;
}

.faq-answer {
  background-color: var(--light-gray);
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer p {
  padding: 22px 0;
  line-height: 1.7;
  color: var(--dark);
}

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

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

/* ===== LOCAL SEO SECTION ===== */
.local-seo {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 90px 0;
  position: relative;
}

.local-seo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--light-gray) 50%, transparent 100%);
}

.local-seo h2 {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 50px;
  font-size: 2.4rem;
  font-weight: 800;
  position: relative;
}

.local-content {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.local-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.local-content p {
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.15rem;
  color: var(--dark);
}

.local-content ul {
  margin: 35px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.local-content li {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(230, 57, 70, 0.05);
  border-radius: var(--radius);
  transition: var(--transition);
}

.local-content li:hover {
  background: rgba(230, 57, 70, 0.1);
  transform: translateX(5px);
}

.local-content li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2d4a 100%);
  color: var(--light);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.footer-section:first-child {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.footer-logo:hover img {
  border-color: var(--primary);
  transform: rotate(5deg);
}

.footer-logo span {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, #ffffff 0%, #a8dadc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section p {
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-contact p:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact a {
  color: #e2e8f0;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMACIONES ===== */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .slide-content h1 {
    font-size: 2.8rem;
  }
  
  .slide-image img {
    max-height: 420px;
  }
}

@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 2.4rem;
  }
  
  .slide {
    min-height: auto;
    gap: 30px;
  }
  
  .slide-image img {
    max-height: 380px;
  }
  
  .welcome-content {
    flex-direction: column;
  }
  
  .slide-image {
    justify-content: center;
    margin-top: 30px;
  }
  
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-section:first-child {
    grid-column: 1 / -1;
    text-align: center;
    max-width: none;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* ===== MÓVILES (768px) - MENÚ HAMBURGUESA CORREGIDO ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1.1rem;
    width: 100%;
  }
  
  .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  
  .nav-cta {
    margin-top: 20px;
    text-align: center;
    padding: 12px 20px !important;
    display: block;
    width: 100%;
  }

  /* Resto de estilos móviles */
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .topbar {
    padding: 8px 0;
    font-size: 0.75rem;
  }
  
  .topbar-content {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  
  .topbar-phone, .topbar-social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .topbar-phone a {
    font-size: 0.8rem;
    padding: 2px 6px;
  }
  
  .header .container {
    padding: 12px 15px;
  }
  
  .logo {
    gap: 8px;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
  }
  
  .logo-name {
    font-size: 1.1rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .hero {
    padding: 80px 0 40px;
    min-height: auto;
  }
  
  .slide {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .slide-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .slide-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 100%;
    line-height: 1.5;
  }
  
  .hero-badges {
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    min-height: 44px;
  }
  
  .slide-image {
    margin-top: 20px;
  }
  
  .slide-image img {
    max-height: 300px;
  }
  
  .slide-image::before {
    display: none;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .section-header h2::after {
    bottom: -8px;
    width: 60px;
    height: 3px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .welcome-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .welcome-text p {
    font-size: 1rem;
    text-align: left;
    line-height: 1.6;
  }
  
  .payment-methods {
    margin: 1.5rem 0;
    padding: 1.5rem;
  }
  
  .payment-methods h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .payment-options {
    flex-direction: column;
    gap: 10px;
  }
  
  .payment-option {
    flex: 1 1 100%;
    padding: 12px 15px;
  }
  
  .facturacion-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
  }
  
  .facturacion-info h4 {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .feature {
    padding: 25px 15px;
  }
  
  .feature i {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .feature h4 {
    font-size: 1.1rem;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .service-icon i {
    font-size: 1.8rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonial-card::before {
    font-size: 3.5rem;
    top: 15px;
    right: 20px;
  }
  
  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .testimonial-author {
    padding-top: 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .faq-items {
    max-width: 100%;
  }
  
  .faq-question {
    padding: 18px 15px;
    min-height: 44px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.4;
    padding-right: 20px;
  }
  
  .faq-answer {
    padding: 0 15px;
  }
  
  .faq-answer p {
    padding: 18px 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .local-seo {
    padding: 60px 0;
  }
  
  .local-seo h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .local-content {
    padding: 30px 20px;
  }
  
  .local-content::before {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  
  .local-content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }
  
  .local-content ul {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 25px 0;
  }
  
  .local-content li {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
  
  .cta {
    padding: 60px 0;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section:first-child {
    max-width: none;
  }
  
  .footer-logo {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    width: 50px;
    height: 50px;
  }
  
  .footer-logo span {
    font-size: 1.3rem;
  }
  
  .footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding-top: 25px;
    font-size: 0.9rem;
  }
  
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ===== MÓVILES PEQUEÑOS (576px) ===== */
@media (max-width: 576px) {
  .container {
    padding: 0 12px;
  }
  
  .hero {
    padding: 70px 0 30px;
  }
  
  .slide-content h1 {
    font-size: 1.7rem;
  }
  
  .slide-content p {
    font-size: 0.95rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.6rem;
  }
  
  .testimonial-card {
    padding: 20px 15px;
  }
  
  .testimonial-card::before {
    font-size: 3rem;
    top: 12px;
    right: 15px;
  }
  
  .faq-question {
    padding: 15px 12px;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 12px;
  }
  
  .faq-answer p {
    padding: 15px 0;
    font-size: 0.9rem;
  }
  
  .local-content {
    padding: 25px 15px;
  }
  
  .local-content p {
    font-size: 0.95rem;
  }
  
  .local-content li {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
  
  .cta-content h2 {
    font-size: 1.6rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
  }
}

/* ===== REDUCCIÓN DE MOVIMIENTO ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-badge,
  .service-card,
  .feature,
  .testimonial-card {
    animation: none !important;
  }
}