/* ========================================
   YO ADMINISTRO
   ======================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Colores Principales */
  --primary-color: #0b5847;
  --primary-dark: #407845;
  --primary-light: #407845;
  --secondary-color: #10b981;
  --secondary-dark: #059669;
  
  /* Colores de Estado */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;
  
  /* Grises */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Tipografía */
  --font-primary: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Tamaños */
  --header-height: 30px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transiciones */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}
/* ==================== NAVEGACIÓN ==================== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all var(--transition-base);
  z-index: 1000;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.navbar-brand .logo {
  max-height: 50px;
  transition: transform var(--transition-base);
}

.navbar-brand:hover .logo {
  transform: scale(1.05);
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-sm);
  position: relative;
  transition: all var(--transition-base);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::before {
  width: 50%;
}

/* ==================== BOTONES ==================== */
.btn {
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #003d99);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ==================== WHATSAPP FLOTANTE ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 60px);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--primary-color) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--secondary-color) 0%, transparent 50%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-family: var(--font-secondary);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

/* Hero Image & Floating Cards */
.hero-image-wrapper {
  position: relative;
  padding: 2rem;
}

.hero-main-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
}

.card-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.card-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  left: -30px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==================== FILTROS DE SERVICIOS ==================== */
.service-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  color: var(--gray-700);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-100);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.bg-gradient-primary { background: linear-gradient(135deg, #0066ff, #0052cc); }
.bg-gradient-success { background: linear-gradient(135deg, #10b981, #059669); }
.bg-gradient-warning { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-gradient-info { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg-gradient-danger { background: linear-gradient(135deg, #ef4444, #dc2626); }
.bg-gradient-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.bg-gradient-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bg-gradient-secondary { background: linear-gradient(135deg, #6b7280, #4b5563); }
.bg-gradient-dark { background: linear-gradient(135deg, #1f2937, #111827); }

.service-badge {
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.badge-new {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.badge-premium {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--gray-700);
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.service-features i {
  color: var(--success-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.featured-service {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.benefit-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: transform var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.benefit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gray-100);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Comparación */
.comparison-section {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: var(--gray-50);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
}

.comparison-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.comparison-list i {
  font-size: 1.25rem;
}

.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.before {
  border: 2px solid var(--danger-color);
}

.after {
  border: 2px solid var(--success-color);
  background: linear-gradient(135deg, #f0fdf4, white);
}

/* ==================== TIMELINE ==================== */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
  grid-column: 2;
  grid-row: 1;
}

.timeline-marker {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 0 8px white, 0 0 0 10px var(--primary-color);
}

.timeline-content {
  grid-column: 3;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
}

.timeline-item:nth-child(even) .timeline-content:hover {
  transform: translateX(-10px);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1.5rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.timeline-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.timeline-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-features li {
  padding: 0.5rem 0;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline-features i {
  color: var(--success-color);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 10rem;
  font-weight: 800;
  color: var(--gray-100);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.testimonial-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f0f9ff, white);
}

.testimonial-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.author-role,
.author-location {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* Trust Section */
.trust-section {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trust-stat-item {
  text-align: center;
}

.trust-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* ==================== FAQ ACCORDION ==================== */
.custom-accordion .accordion-item {
  background: white;
  border: 2px solid var(--gray-100);
  border-radius: var(--border-radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.custom-accordion .accordion-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.custom-accordion .accordion-button {
  background: white;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.5rem;
  border: none;
  transition: all var(--transition-base);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) i {
  color: white;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111827'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
  padding: 1.5rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.custom-accordion .accordion-body ul {
  margin: 1rem 0;
}

.custom-accordion .accordion-body li {
  margin: 0.5rem 0;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.contact-info-wrapper {
  padding: 2rem 0;
}

.info-benefit {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  flex-shrink: 0;
}

.info-benefit h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.info-benefit p {
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

.contact-direct {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-method a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-method span {
  color: var(--gray-700);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.form-floating > label {
  color: var(--gray-600);
}

.form-control,
.form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  padding: 1rem;
  transition: all var(--transition-base);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-control.is-invalid {
  border-color: var(--danger-color);
}

.form-control.is-valid {
  border-color: var(--success-color);
}

.invalid-feedback {
  color: var(--danger-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  color: var(--gray-600);
}

.form-note {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.form-success,
.form-error {
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 2rem;
}

.form-success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 2px solid var(--success-color);
}

.form-success i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.form-error {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border: 2px solid var(--danger-color);
}

.form-error i {
  font-size: 3rem;
  color: var(--danger-color);
  margin-bottom: 1rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 5rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin: 0;
}

.cta-section .btn-light {
  background: white;
  color: var(--primary-color);
  font-weight: 700;
}

.cta-section .btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(180deg, var(--gray-900), #0a0e1a);
  color: var(--gray-300);
  padding-top: 5rem;
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  max-height: 50px;
  margin-bottom: 1.5rem;
}

.footer-description {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
}

.footer-widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-300);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--gray-300);
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding: 2rem 0;
}

.copyright {
  color: var(--gray-400);
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--gray-400);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 999;
  transition: all var(--transition-base);
}

.scroll-to-top.show {
  display: flex;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .hero-section {
    padding-top: calc(var(--header-height) + 10px);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
  }
  
  .timeline-content {
    grid-column: 2;
  }
  
  .timeline-content:hover,
  .timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(0) !important;
  }
  
  .comparison-arrow {
    transform: rotate(90deg);
    margin: 2rem 0;
  }
  
  .footer-legal {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .top-bar {
    font-size: 12px;
    padding: 8px 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .floating-card {
    display: none;
  }
  
  .service-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  
  .scroll-to-top {
    bottom: 85px;
    right: 20px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .timeline-marker {
    width: 60px;
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ==================== UTILITIES ==================== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== LOADING STATE ==================== */
.btn-loading .spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .whatsapp-float,
  .scroll-to-top,
  .top-bar {
    display: none !important;
  }
}