@import url(https://fonts.cdnfonts.com/css/mont);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap);
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Ajusta según la altura de tu navbar */
}

/* Ajuste para el comportamiento del scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Asegura que el scroll sea suave en todos los navegadores */
* {
  scroll-margin-top: 80px; /* Ajusta según la altura de tu navbar */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Asegurar que el menú móvil esté por encima de todo */
.mobile-menu {
  position: fixed !important;
  z-index: 9999 !important;
}

/* Evitar que el contenido se desplace cuando el menú está abierto */
body.menu-open {
  overflow: hidden;
} 
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  transition: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  color: #333857;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333857;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2) {
  top: 8px;
}

.menu-icon span:nth-child(3) {
  top: 16px;
}

.menu-icon.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-icon.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.navbar-menu-desktop {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}

.navbar-menu-desktop a {
  color: #333857;
  text-decoration: none;
  font-size: 1rem;
}

.navbar-menu-mobile {
  display: none;
}

.navbar-overlay {
  display: none;
}

@media (max-width: 900px) and (min-width: 769px) {
  .navbar-container {
    padding: 0.75rem 1.5rem;
  }

  .navbar-menu-desktop {
    gap: 1.5rem;
    margin-right: 1rem;
  }

  .navbar-menu-desktop a {
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-image {
    height: 35px;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0.75rem 1rem;
  }

  .navbar-menu-desktop {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .navbar-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }

  .navbar-menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: white;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 1002;
  }

  .navbar-menu-mobile.active {
    right: 0;
  }

  .navbar-menu-mobile a {
    color: #333857;
    text-decoration: none;
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  .navbar-overlay {
    display: none !important;
  }
} 
.footer {
  background: #333857;
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.footer::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%);
  pointer-events: none;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  max-width: 350px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.025em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
}

.footer-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.footer-link:hover .footer-icon {
  transform: scale(1.1);
}

.footer-copyright {
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 1.25rem 0;
  }

  .footer .container {
    padding: 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
  }

  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    order: -1;
  }

  .footer-section {
    gap: 0.75rem;
  }

  .footer-contact {
    order: 3;
    justify-self: end;
  }

  .footer-nav {
    order: 2;
    justify-self: start;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1rem 0;
  }
  
  .footer-logo {
    height: 70px;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
  }

  .footer-title {
    font-size: var(--font-size-base);
  }

  .footer-link {
    padding: 0.4rem;
    font-size: var(--font-size-sm);
  }

  .footer-icon {
    width: 18px;
    height: 18px;
  }

  .footer-copyright {
    font-size: var(--font-size-xs);
  }
} 
/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed !important;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999999 !important; /* Z-index muy alto para estar siempre visible */
  animation: whatsappPulse 2s infinite;
}

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

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333857;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid #333857;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive para el botón de WhatsApp */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon svg {
    width: 20px;
    height: 20px;
  }
} 
.contact-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 5rem 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Removed unused styles for .consultation-info h3 */

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

.consultation-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.consultation-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.consultation-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  letter-spacing: -0.025em;
}

.consultation-subtitle {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
  padding-left: 0;
}

.consultation-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.step-item:hover::before {
  transform: scaleX(1);
}

.step-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.step-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.step-icon {
  width: 36px;
  height: 36px;
  background: var(--color-gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-item:hover .step-icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.consultation-guarantee {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #a7f3d0;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.consultation-guarantee::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.2; }
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.guarantee-text {
  flex: 1;
}

.guarantee-text strong {
  font-size: 1.1rem;
  color: #065f46;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: #047857;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.consultation-description {
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.consultation-description p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: justify;
}

.consultation-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.highlight-content {
  flex: 1;
}

.highlight-content strong {
  font-size: 1.1rem;
  color: #065f46;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  font-size: 0.95rem;
  color: #047857;
  line-height: 1.5;
  margin: 0;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
}

.contact-form {
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1e293b;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
  transform: translateY(-2.5rem) scale(0.85);
  color: #3b82f6;
  background: #ffffff;
  padding: 0 0.5rem;
}

.form-group label {
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  font-size: 1rem;
  color: #64748b;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left center;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  padding: 0.5rem;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  padding: 1.25rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.025em;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  color: #10b981;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 6px;
}

.error-message {
  color: #ef4444;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .contact-container {
    padding: 0 1.5rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .consultation-header {
    margin-bottom: 2rem;
  }

  .consultation-title-row {
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .consultation-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  
  .consultation-header h3 {
    font-size: 1.5rem;
  }
  
  .consultation-subtitle {
    font-size: 0.95rem;
  }
  
  .consultation-steps {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .step-item {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .step-icon {
    width: 32px;
    height: 32px;
  }
  
  .consultation-guarantee {
    padding: 1.25rem;
  }
  
  .guarantee-content {
    gap: 0.75rem;
  }
  
  .guarantee-icon {
    width: 40px;
    height: 40px;
  }
  
  .guarantee-text strong {
    font-size: 1rem;
  }
  
  .guarantee-text p {
    font-size: 0.85rem;
  }
  
  .consultation-description {
    padding: 1.5rem;
  }
  
  .consultation-highlight {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-container {
    padding: 0 1rem;
  }
  
  .contact-title {
    font-size: 1.75rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .consultation-header {
    margin-bottom: 1.5rem;
  }

  .consultation-title-row {
    gap: 0.625rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }
  
  .consultation-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  
  .consultation-header h3 {
    font-size: 1.25rem;
  }
  
  .consultation-subtitle {
    font-size: 0.9rem;
  }
  
  .consultation-steps {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .step-item {
    padding: 0.875rem;
    gap: 0.625rem;
    flex-direction: column;
    text-align: center;
    min-width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .step-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.125rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .step-icon {
    width: 28px;
    height: 28px;
    margin-top: 0.5rem;
  }
  
  .consultation-guarantee {
    padding: 1rem;
  }
  
  .guarantee-content {
    gap: 0.625rem;
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto;
  }
  
  .guarantee-text strong {
    font-size: 0.95rem;
  }
  
  .guarantee-text p {
    font-size: 0.8rem;
  }
  
  .consultation-info h3 {
    font-size: 1.25rem;
  }
  
  .consultation-description {
    padding: 1.25rem;
  }
  
  .consultation-description p {
    font-size: 0.95rem;
  }
  
  .consultation-highlight {
    padding: 1rem;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
  }
  
  .highlight-content strong {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.875rem 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .submit-button {
    padding: 1rem;
    font-size: 1rem;
  }
} 

 
.hero-section {
  background: url(/static/media/fondito.90c63b395844abbf9f89.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 160px 0 80px; /* Reducido de 200px a 160px para moverlo más arriba */
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem 0 0; /* Reducido el padding izquierdo a 0 para moverlo más a la izquierda */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  text-align: left;
  background: rgba(255, 255, 255, 0.85); /* Cambiado de 0.1 a 0.85 para hacerlo más blanco transparentoso */
  backdrop-filter: none; /* Eliminado el blur */
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-self: flex-start;
  margin-left: -1rem; /* Agregado margen negativo para moverlo aún más a la izquierda */
}

.hero-subtitle {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation-delay: 0.2s;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.025em;
  animation-delay: 0.4s;
}

.hero-description {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  color: #1e293b;
  margin: 0;
  max-width: 90%;
  animation-delay: 0.6s;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
  animation-delay: 0.8s;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size-sm);
  color: #334155;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.hero-feature:nth-child(1) { animation-delay: 0.9s; }
.hero-feature:nth-child(2) { animation-delay: 1.0s; }
.hero-feature:nth-child(3) { animation-delay: 1.1s; }
.hero-feature:nth-child(4) { animation-delay: 1.2s; }

.hero-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-feature-text {
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1rem 0;
  animation-delay: 1.2s;
}

.hero-actions .btn {
  padding: 1rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: 8px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dashboard-preview {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--color-border);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 1s ease forwards;
  animation-delay: 0.5s;
}

.dashboard-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.3) 50%, transparent 51%);
  background-size: 20px 20px;
  animation: shimmerDashboard 3s infinite;
  opacity: 0.1;
  pointer-events: none;
}

.dashboard-header {
  background: var(--color-secondary);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-controls {
  display: flex;
  gap: 0.5rem;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0;
  animation: popIn 0.4s ease forwards;
}

.control-dot.red {
  background-color: #ef4444;
  animation-delay: 1s;
}

.control-dot.yellow {
  background-color: #f59e0b;
  animation-delay: 1.1s;
}

.control-dot.green {
  background-color: #10b981;
  animation-delay: 1.2s;
}

.dashboard-title {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  opacity: 0;
  animation: fadeInScale 0.6s ease forwards;
  animation-delay: 1.3s;
}

.dashboard-nav {
  background: white;
  padding: 0 1.5rem;
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.nav-item {
  padding: 1rem 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 1.4s; }
.nav-item:nth-child(2) { animation-delay: 1.5s; }
.nav-item:nth-child(3) { animation-delay: 1.6s; }

.nav-item.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 500;
}

.dashboard-content {
  padding: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: var(--color-secondary);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: bounceIn 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 1.7s; }
.stat-card:nth-child(2) { animation-delay: 1.8s; }
.stat-card:nth-child(3) { animation-delay: 1.9s; }

.stat-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.stat-change {
  font-size: var(--font-size-xs);
  font-weight: 500;
}

.stat-change.positive {
  color: #10b981;
}

.stat-change.neutral {
  color: var(--color-text-muted);
}

.chart-container {
  background: var(--color-secondary);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
  animation-delay: 2s;
}

.chart-header {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.chart-bars {
  padding: 1rem;
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 120px;
}

.chart-bar {
  background: linear-gradient(to top, var(--color-primary), var(--color-primary-light));
  border-radius: 4px 4px 0 0;
  flex: 1;
  min-height: 20px;
  transition: var(--transition);
  opacity: 0;
  animation: growUp 0.8s ease forwards;
}

.chart-bar:nth-child(1) { animation-delay: 2.2s; }
.chart-bar:nth-child(2) { animation-delay: 2.3s; }
.chart-bar:nth-child(3) { animation-delay: 2.4s; }
.chart-bar:nth-child(4) { animation-delay: 2.5s; }
.chart-bar:nth-child(5) { animation-delay: 2.6s; }
.chart-bar:nth-child(6) { animation-delay: 2.7s; }

.chart-bar:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Text reveal animation */
.text-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.animate-text-reveal {
  animation: textRevealAnimation 0.8s ease forwards;
}

/* Animaciones personalizadas */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  60% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes growUp {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes textRevealAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmerDashboard {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Animation classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.slide-in-bottom {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 1s ease forwards;
}

.animate-in {
  animation-play-state: running;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 150px 0 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  
  .hero-content {
    max-width: 100%;
  }

  .hero-features {
    align-items: center;
  }
  
  .hero-description {
    max-width: 100%;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .hero-section {
    padding: 140px 0 80px;
  }

  .hero-container {
    padding: 0 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 80%;
    text-align: center;
    margin: 0 auto;
    margin-left: 0;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
    text-align: center;
  }

  .hero-description {
    font-size: var(--font-size-lg);
    text-align: center;
    max-width: 100%;
  }

  .hero-features {
    align-items: center;
    text-align: center;
  }

  .hero-feature {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 120px; /* Aumentado el padding inferior de 60px a 120px para dar más altura */
    background: url(/static/media/background_movil.0f27bc123c047fcf9cc9.webp);
    background-size: 100% 100%; /* Estira la imagen al tamaño completo de la pantalla */
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Asegura que el hero ocupe al menos toda la altura de la pantalla */
  }

  .hero-container {
    padding: 0 1.5rem;
    gap: 2rem;
    min-height: calc(100vh - 240px); /* Ajusta la altura del contenedor considerando el padding */
  }

  .hero-content {
    max-width: 100%;
    padding: 1rem;
    text-align: center;
    margin: 0 auto;
    margin-left: 0;
    gap: 1rem;
  }

  .hero-title {
    font-size: var(--font-size-4xl); /* Aumentado de 2xl a 4xl para hacer el título más grande */
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .hero-description {
    font-size: var(--font-size-xs); /* Reducido de sm a xs para hacer la descripción más pequeña */
    text-align: center;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }

  .hero-features {
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
  }

  .hero-feature {
    justify-content: center;
    font-size: var(--font-size-xs);
    gap: 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 1rem 0 0.5rem 0;
    gap: 0.75rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-sm);
  }

  .dashboard-preview {
    max-width: 400px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .chart-bars {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 120px 0 40px;
    background-position: center top;
    background-size: cover;
    min-height: 100vh;
  }

  .hero-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-description {
    font-size: var(--font-size-base);
  }
  
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-nav {
    gap: 1rem;
  }

  .nav-item {
    font-size: var(--font-size-xs);
  }

  .dashboard-preview {
    max-width: 350px;
  }
} 
/* Home Component - Estilos corporativos */

.home {
  background: var(--color-bg);
  min-height: 100vh;
}

/* Asegurar espaciado correcto entre secciones */
.home > div {
  position: relative;
}

/* Scroll suave para navegación */
.home [name] {
  scroll-margin-top: 80px;
  display: block;
  visibility: visible;
}

/* Hacer visible los puntos de anclaje */
.home .element {
  position: relative;
  z-index: 1;
}

/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
  .home [name] {
    scroll-margin-top: 70px;
  }
} 
.problems-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffffff 50%, var(--color-secondary-dark) 100%);
  padding: var(--section-padding);
  position: relative;
}

.problems-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.problems-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.problems-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.problems-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.problem-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon-wrapper {
  margin-bottom: 1.5rem;
}

.problem-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  background: var(--color-accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.problem-icon svg {
  width: 24px;
  height: 24px;
}

.problem-card:hover .problem-icon {
  transform: scale(1.05);
  background: var(--color-primary);
  color: white;
}

.problem-content h3 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.problem-description {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.problem-impact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.impact-label {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.impact-stat {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-accent-light);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  width: fit-content;
}

.problems-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.cta-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

/* Custom properties for card colors */
.problem-card[style*="--card-color: #ef4444"] {
  --card-color-rgb: 239, 68, 68;
}

.problem-card[style*="--card-color: #f59e0b"] {
  --card-color-rgb: 245, 158, 11;
}

.problem-card[style*="--card-color: #8b5cf6"] {
  --card-color-rgb: 139, 92, 246;
}

.problem-card[style*="--card-color: #06b6d4"] {
  --card-color-rgb: 6, 182, 212;
}

/* Responsive */
@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .problems-section {
    padding: 4rem 0;
  }

  .problems-container {
    padding: 0 1.5rem;
  }

  .problems-title {
    font-size: 2rem;
  }

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

  .problem-card {
    padding: 1.5rem;
  }

  .problem-content h3 {
    font-size: var(--font-size-xl);
  }

  .problems-cta {
    padding: 2rem 1.5rem;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .problems-section {
    padding: 3rem 0;
  }

  .problems-header {
    margin-bottom: 3rem;
  }

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

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

  .problem-card {
    padding: 1.25rem;
  }

  .problem-icon {
    width: 40px;
    height: 40px;
  }

  .problem-icon svg {
    width: 20px;
    height: 20px;
  }

  .problem-content h3 {
    font-size: var(--font-size-lg);
  }

  .problem-description {
    font-size: var(--font-size-sm);
  }

  .impact-stat {
    font-size: var(--font-size-xs);
  }

  .problems-cta {
    padding: 1.5rem 1rem;
  }

  .cta-content h3 {
    font-size: 1.25rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
} 
.results-section {
  background: #ffffff;
  padding: var(--section-padding);
  position: relative;
}

.results-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.results-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.results-heading {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.results-intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.metrics-showcase {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  margin: 0 -100vw 5rem -100vw;
  padding: 4rem 100vw;
  position: relative;
}

.metrics-showcase::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%);
  pointer-events: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: var(--transition);
}

.metric-card:hover .metric-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.metric-icon svg {
  width: 24px;
  height: 24px;
}

.metric-content .metric-value {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-content .metric-label {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.metric-content .metric-description {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.benefits-section {
  margin-bottom: 4rem;
}

.benefits-section h3 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.benefit-card:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.benefit-content p {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.results-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.results-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-content h3 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.cta-content p {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-guarantee {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.cta-guarantee strong {
  color: #ffffff;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 4rem 0;
  }

  .results-container {
    padding: 0 1.5rem;
  }

  .results-heading {
    font-size: var(--font-size-3xl);
  }

  .results-intro {
    font-size: var(--font-size-base);
  }

  .metrics-showcase {
    margin: 0 -50vw 3rem -50vw;
    padding: 3rem 50vw;
  }

  .metric-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .metric-content .metric-value {
    font-size: var(--font-size-2xl);
  }

  .benefits-section h3 {
    font-size: var(--font-size-2xl);
  }

  .benefit-card {
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .results-cta {
    padding: 2rem 1.5rem;
  }

  .cta-content h3 {
    font-size: var(--font-size-2xl);
  }

  .cta-content p {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .results-section {
    padding: 3rem 0;
  }

  .results-container {
    padding: 0 1rem;
  }

  .results-header {
    margin-bottom: 3rem;
  }

  .results-heading {
    font-size: var(--font-size-2xl);
  }

  .results-intro {
    font-size: var(--font-size-sm);
  }

  .metrics-showcase {
    margin: 0 -100vw 2rem -100vw;
    padding: 2rem 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .metrics-grid {
    gap: 1.5rem;
  }

  .metric-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .metric-content .metric-value {
    font-size: var(--font-size-xl);
  }

  .benefits-section h3 {
    font-size: var(--font-size-xl);
  }

  .benefits-grid {
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .benefit-content h4 {
    font-size: var(--font-size-lg);
  }

  .benefit-content p {
    font-size: var(--font-size-sm);
  }

  .results-cta {
    padding: 1.5rem 1rem;
  }

  .cta-content h3 {
    font-size: var(--font-size-xl);
  }
} 
.solutions-section {
  background: linear-gradient(135deg, var(--color-gray-50) 0%, #ffffff 50%, var(--color-gray-50) 100%);
  padding: var(--section-padding);
  position: relative;
}

.solutions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, var(--color-accent-light) 0%, transparent 50%);
  opacity: 0.1;
  pointer-events: none;
}

.solutions-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.solutions-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-gray-200);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solutions-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.solutions-description {
  font-size: var(--font-size-lg);
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
  justify-items: center;
}

.solution-card {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-card-featured {
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
  position: relative;
}

.solution-card-featured::after {
  content: 'PRINCIPAL';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--color-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.1em;
}

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

.solution-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.solution-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.solution-card:hover .solution-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.solution-icon svg {
  width: 24px;
  height: 24px;
}

.solution-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin: 0;
}

.solution-description {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: var(--font-size-xs);
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-100);
  line-height: 1.4;
}

.solution-features li:last-child {
  border-bottom: none;
}

.solution-features li:before {
  content: '✓';
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.solution-cta {
  margin-top: auto;
}

.solution-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0.025em;
}

.solution-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.solution-btn svg {
  transition: transform 0.3s ease;
}

.solution-btn:hover svg {
  transform: translateX(3px);
}

.modules-showcase {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.modules-title {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.modules-description {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.modules-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.modules-content {
  flex: 1;
}

.modules-image {
  flex: 1;
  max-width: 500px;
}

.modules-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  transition: var(--transition);
  text-align: left;
}

.module-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.module-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.module-item:hover .module-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.module-icon svg {
  width: 20px;
  height: 20px;
}

.module-content {
  flex: 1;
}

.module-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.module-description {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  line-height: 1.4;
  margin: 0;
}

.additional-services {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-200);
}

.additional-text {
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
  background: rgba(59, 130, 246, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
  margin: 0;
  line-height: 1.5;
}

.additional-text strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-container {
    flex-direction: column;
    gap: 2rem;
  }

  .modules-image {
    max-width: 100%;
    order: -1;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 3rem 0;
  }

  .solutions-container {
    padding: 0 1.5rem;
  }

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

  .solution-card {
    padding: 1.5rem;
  }

  .modules-showcase {
    padding: 2rem 1.5rem;
  }

  .modules-title {
    font-size: var(--font-size-2xl);
  }

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

  .module-item {
    padding: 1rem;
  }

  .modules-container {
    gap: 1.5rem;
  }

  .modules-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .solutions-section {
    padding: 3rem 0;
  }

  .solutions-container {
    padding: 0 1rem;
  }

  .solutions-title {
    font-size: var(--font-size-2xl);
  }

  .solution-card {
    padding: 1.25rem;
  }

  .solution-title {
    font-size: var(--font-size-xl);
  }

  .modules-showcase {
    padding: 2rem 1rem;
    margin: 0 -0.5rem;
  }

  .modules-title {
    font-size: var(--font-size-2xl);
  }

  .module-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .module-icon {
    align-self: center;
  }

  .additional-text {
    padding: 0.8rem 1rem;
    font-size: var(--font-size-xs);
  }
} 
:root {
  /* Colores Corporativos */
  --color-primary: #3b82f6;
  --color-primary-light: #60a5fa;
  --color-primary-dark: #2563eb;
  --color-secondary: #f8fafc;
  --color-secondary-dark: #e2e8f0;
  
  /* Grises Corporativos */
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  
  --color-bg: #ffffff;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-accent: #1e40af;
  --color-accent-light: #dbeafe;
  --color-gray: #f1f5f9;
  --color-border: #e2e8f0;
  
  /* Tipografía */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Espaciado */
  --container-padding: clamp(1rem, 5vw, 10rem);
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transiciones */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

/* Centrado de componentes */
.section-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.content-centered {
  max-width: 800px;
  margin: 0 auto;
}

.grid-centered {
  display: grid;
  place-items: center;
  gap: 2rem;
}

/* Estilos de texto corporativo */
h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.025em;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-text);
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-text);
}

p {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  line-height: 1.7;
}

.text-muted {
  color: var(--color-text-muted);
}

/* Animaciones globales */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.6s ease forwards;
}

.slide-in-bottom {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInBottom 0.8s ease forwards;
}

.text-reveal {
  opacity: 0;
  animation: textReveal 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Botones corporativos mejorados con efectos shiny */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: var(--font-size-base);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.025em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gray-50) 100%);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: inset 0 0 0 0 var(--color-primary);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  box-shadow: inset 300px 0 0 0 var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Botón con efecto shimmer exclusivo */
.btn-exclusive {
  background: linear-gradient(
    45deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 25%,
    var(--color-primary) 50%,
    var(--color-primary-light) 75%,
    var(--color-primary) 100%
  );
  background-size: 200% 200%;
  animation: shimmer 2s infinite;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-exclusive:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
  animation-duration: 1s;
}

/* Utilidades */
.text-primary {
  color: var(--color-primary);
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.py-4 {
  padding: 2rem 0;
}

.px-4 {
  padding: 0 2rem;
}

/* Responsive utilities */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-4 {
  gap: 2rem;
}

/* Efecto de selección de texto */
::selection {
  background-color: var(--color-accent-light);
  color: var(--color-primary);
}

/* Media queries para responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--font-size-sm);
  }
  
  .d-md-none {
    display: none;
  }
  
  .d-md-block {
    display: block;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .btn {
    width: 100%;
    padding: 1rem;
  }
  
  .d-sm-none {
    display: none;
  }
  
  .d-sm-block {
    display: block;
  }
}


