/* ========================================
  ESTILOS ESPECÍFICOS PARA LA PÁGINA HOME
  ======================================== */

/* ========================================
  HERO SECTION ESPECÍFICO
  ======================================== */


  
.hero {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--spacing-xl);
}

.hero-text {
  flex: 1;
  min-width: 550px;
}

.hero-visual {
  flex: 1;
  min-width: 550px;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: start;
  justify-content: center;
}

.hero-title {
  font-size: 48px;
  line-height: 1.1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-lg);
  color: var(--text-muted);
}

.hero-title .highlight {
  background:  var(--blue-500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-kpis {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.kpi-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
  min-width: 120px;
}

.kpi-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-500);
  margin-bottom: var(--spacing-xs);
}

.kpi-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-icon {
  margin-left: var(--spacing-sm);
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-outline:hover .btn-icon {
  transform: translateX(4px);
}

.hero-visual-img {
  width: 100%;
  object-fit: contain;
  border-radius: var(--border-radius-xl);
  display: block;
}

/* ========================================
    ANIMACIONES ESPECÍFICAS DEL HERO
    ======================================== */

.hero-title {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-description {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-kpis {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-actions {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-visual {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}


/* Keyframes para animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Efectos hover adicionales */
.hero-img {
  transition: transform var(--transition-normal);
}

.hero-img:hover {
  transform: scale(1.02);
}

/* ========================================
  MARKING METHODS SECTION - Usa tabs estándar de components.css
    ======================================== */

/* Estilos para botones de App Store y Play Store en tabs */
.tabs-tab-description img {
  height: 43px;
  width: auto;
  border-radius: 8px;
  transition: transform var(--transition-fast);
  margin-right: var(--spacing-md);
}

.tabs-tab-description img:hover {
  transform: scale(1.05);
}

.tabs-tab-description li{
  margin-left: 1rem !important;
}

/* ========================================
   CHECKPOINT IMAGES CON SUPERPOSICIÓN DE TEXTO
   ======================================== */

/* Checkpoint images layout */
.checkpoint-images {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.checkpoint-image-container {
  flex: 1;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 12px;
  min-height: 350px;
  overflow: hidden;
}

/* Superposición con fondo blanco y texto */
.mode-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: flex-end;
}

.mode-content {
  text-align: left;
}

.mode-title {
  font-size: 18px;
  font-weight: 700;
  width: fit-content;
  padding: var(--spacing-xs);
  color: var(--text-default);
  margin: 0;
  background: white;
  line-height: 1.2;
}

.mode-description {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  background: white;
  padding: var(--spacing-xs);
  line-height: 1.3;
  padding-top: 0;
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions {
  padding: var(--spacing-4xl) 0;
  background: var(--blue-50);
}

.solutions-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.solutions-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.solutions .container {
  max-width: 100%;
  padding: 0 var(--spacing-2xl);
}


.solutions-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1600px;
  gap: var(--spacing-lg);
  margin: 0 auto;
}

.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: stretch;
}

.solutions-screen {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  padding: 40px var(--spacing-lg) var(--spacing-lg);
  position: sticky;
  top: 100px;
  background: white;
  border: 2px solid #e9ecef;
  height: calc(472px + 40px + var(--spacing-lg));
  min-height: calc(472px + 40px + var(--spacing-lg));
  width: calc(728px + (2 * var(--spacing-lg)));
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-screen::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 12px;
  height: 12px;
  background: #ff5f57;
  border-radius: 50%;
  box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #28ca42;
}

.solutions-screen.no-screen-frame {
  padding: 0;
  background: transparent;
  border: none;
  height: calc(472px + 40px + var(--spacing-lg));
  min-height: calc(472px + 40px + var(--spacing-lg));
}

.solutions-screen.no-screen-frame::before {
  display: none;
}

.solutions-screen.no-screen-frame img {
  aspect-ratio: auto;
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-screen img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  transition: opacity var(--transition-normal);
  border-radius: var(--border-radius-md);
  object-fit: contain;
}

.solutions-screen img.previewable-image {
  cursor: pointer;
}

.solutions-screen img.previewable-image:hover {
  opacity: 0.85;
}

.solution-card {
  max-width: 400px;
  background: var(--gray-50);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--blue-200);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm);
  text-align: left;
  cursor: pointer;
  flex: 1;
}


.solution-card.active {
  background: var(--blue-200);
}

.solution-card.active .solution-title {
  color: var(--blue-700);
}

.solution-card.active .solution-icon {
  background: transparent;
}

.solution-card.active .solution-icon img {
  filter: none;
}

.solution-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
}

.solution-card:hover .solution-icon {
  background: var(--blue-100);
}

.solution-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.85);
}

.solution-icon-blue {
  display: none;
}

.solution-icon-orange {
  display: block;
}

.solution-card.active .solution-icon-orange {
  display: none;
}

.solution-card.active .solution-icon-blue {
  display: block;
  filter: none;
}

.solution-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-default);
  line-height: 1.3;
  margin: 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
  padding: var(--spacing-2xl) 0;
  background-color: #FFFFFF;
}

.benefits-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.benefits-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.automations-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.reports-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.companies-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.implementation-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}


.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.benefits-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.benefit-card {
  background-color: var(--blue-50);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: var(--spacing-lg);
}

.benefit-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-title{
  font-size: 18px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.benefit-description, .automation-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ========================================
   AUTOMATIONS SECTION
   ======================================== */

.automations {
  padding: var(--spacing-4xl) 0;
  background-color: #FFFFFF;
}

.automations-grid {
  display: flex;
  gap: var(--spacing-md);
  flex-direction: column;
  max-width: 1200px;
  padding: var(--spacing-md);
  margin: 0 auto;
  background-image: url('../img/images/vista-lateral-macho-adulto-trabajando-en-la-computadora-portatil.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--border-radius-lg);
}

.automation-card {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  text-align: left;
  max-width: 400px;
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.automation-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.automation-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: 0;
  line-height: 1.3;
}

.automation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px;
  background-color: var(--blue-);
}

.automation-icon-img {
  width: 100%;
  height: 100%;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ========================================
   REPORTS SECTION
   ======================================== */

.reports {
  padding: var(--spacing-2xl) 0;
  background-color: var(--blue-50);
}

.reports-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.carousel-nav {
  position: absolute;
  top: 40px;
  background: transparent;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-default);
  transition: all var(--transition-fast);
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--blue-500);
  color: white;
  transform: scale(1.1);
}

.carousel-prev {
  left: 30px;
}

.carousel-next {
  right: 30px;
}

.reports-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-out;
}

.report-card {
  flex: 0 0 100%;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  min-width: 100%;
}

.report-header {
  margin-bottom: var(--spacing-lg);
}

.report-image {
  margin-top: var(--spacing-lg);
}

.report-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.report-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.report-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.reports-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--blue-500);
  width: 28px;
  border-radius: 5px;
}

/* ========================================
   HOMOLOGABLE SECTION
   ======================================== */

.homologable {
  padding: var(--spacing-4xl) 0;
  background-color: #FFFFFF;
}

.homologable-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  margin: 0 auto;
  position: relative;
}

.homologable-content {
  max-width: 500px;
  border-right: 1px solid var(--gray-200);
  padding-right: var(--spacing-xl);
}

.homologable-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-sm);
}
.homologable-badge {
  display: inline-block;
  background-color: var(--blue-50);
  color: var(--blue-700);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.homologable-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.homologable-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.homologable-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.homologable-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.homologable-feature:last-child {
  margin-bottom: 0;
}

.feature-checkmark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-checkmark svg {
  color: var(--blue-500);
}

.homologable-feature span {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.5;
}

/* ========================================
  IMPLEMENTATION SECTION
  ======================================== */

.implementation {
  padding: var(--spacing-3xl) 0;
  background: #FFFFFF;
}

.implementation .section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.implementation-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.implementation-step {
  flex: 1;
  text-align: left;
}

.step-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.step-chevrons {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.implementation-step .step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-500);
  margin: 0;
  line-height: 1.3;
}

.implementation-step .step-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  margin-left: var(--spacing-xl);
}


/* ========================================
  HELP DESK SECTION
  ======================================== */

.help-desk {
  padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}

.help-desk .section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.help-desk-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.help-desk-image {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.help-desk-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.help-desk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  position: relative;
  z-index: 3;
  margin-bottom: calc(-1 * var(--spacing-4xl));
}

.help-desk-card {
  background-color: var(--blue-200);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-align: left;
}


.help-desk-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.help-desk-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ========================================
  WHY CHOOSE SECTION
  ======================================== */

.why-choose {
  padding: calc(var(--spacing-3xl) + var(--spacing-4xl)) 0 var(--spacing-3xl) 0;
  background: var(--blue-50);
  position: relative;
  z-index: 1;
}

.why-choose-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.why-choose-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.why-choose-card {
  background-color: transparent;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.why-choose-icon {
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
}

.why-choose-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.why-choose-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.why-choose-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ========================================
  COMPANIES SECTION
  ======================================== */

.companies {
  padding: var(--spacing-4xl) 0;
  padding-bottom: var(--spacing-md) !important;
  background: #FFFFFF;
}

.companies .section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.companies-carousel {
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.carousel-track {
  display: flex;
  gap: var(--spacing-md);
  width: fit-content;
  animation: scroll 60s linear infinite;
}

.company-logo {
  flex-shrink: 0;
  width: 200px;
  height: 125px;
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}


.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter var(--transition-normal);
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* ========================================
  FOLLOW SECTION
  ======================================== */

.follow {
  padding: var(--spacing-2xl) 0;
  background: #FFFFFF;
}

.follow-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.follow-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-default);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.social-button {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background-color: var(--gray-50);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  color: var(--text-default);
  font-weight: 500;
  min-width: 140px;
  justify-content: center;
}


.social-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-text {
  font-size: 16px;
  font-weight: 500;
}

/* ========================================
  FAQ SECTION
  ======================================== */

/* FAQ styles moved to components.css */

/* ========================================
    RESPONSIVE ESPECÍFICO DEL HERO
   ======================================== */

@media (min-width: 768px) {

  .hero-title {
    font-size: 56px;
  }

  .mockup-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  /* Títulos de secciones responsivos */
  .benefits-title,
  .solutions-title,
  .why-choose-section-title,
  .follow-title,
  .help-desk-section-title,
  .automations-title,
  .reports-title,
  .companies-title,
  .implementation-title,
  .faq-title {
    font-size: 24px;
  }

  .solutions-title {
    margin-bottom: 0;
  }

  .solutions-header{
    margin-bottom: 1rem;
  }
  
  .hero-kpis {
    gap: var(--spacing-md);
  }

  .kpi-item {
    min-width: 100px;
    padding: var(--spacing-md);
  }

  .kpi-value {
    font-size: 20px;
  }

  .mockup-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .stat-card {
    padding: var(--spacing-md);
  }

  .hero-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .hero-text {
    min-width: auto;
    width: 100%;
  }

  .hero-visual {
    min-width: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .benefits {
    padding: var(--spacing-xl) 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .benefits-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .benefit-card {
    padding: var(--spacing-md);
  }
  
  .benefit-title {
    font-size: 16px;
  }
  
  .benefit-icon {
    margin-bottom: var(--spacing-md);
  }
  
  .benefit-description {
    font-size: 14px;
  }

  .automations {
    padding: var(--spacing-2xl) 0;
  }
  
  .automations-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .automation-card {
    padding: var(--spacing-md);
  }
  
  .automation-icon {
    width: 40px;
    height: 40px;
  }
  
  .automation-title {
    font-size: 16px;
  }
  
  .automation-description {
    font-size: 13px;
  }

  .reports {
    padding: var(--spacing-2xl) 0;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
    top: 10px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .reports-carousel {
    border-radius: var(--border-radius-md);
  }
  
  .report-header {
    margin-bottom: var(--spacing-md);
  }
  
  .report-card {
    padding: var(--spacing-lg);
  }
  
  .report-title {
    font-size: 18px;
  }
  
  .report-description {
    font-size: 14px;
  }
  
  .reports-dots {
    gap: var(--spacing-sm);
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  /* Homologable Section Responsive */
  .homologable-card {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .homologable-content {
    max-width: none;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: var(--spacing-md);
  }
  
  .homologable-features {
    width: 100%;
  }

  .homologable-feature {
    justify-content: center;
  }
  
  .dot.active {
    width: 24px;
  }

  .homologable {
    padding: var(--spacing-2xl) 0;
  }
  
  .homologable-card {
    padding: var(--spacing-xl);
  }
  
  .homologable-title {
    font-size: 24px;
  }
  
  .homologable-description {
    font-size: 15px;
  }
  
  .homologable-feature span {
    font-size: 15px;
  }

  .solutions .container {
    padding: 0 var(--spacing-lg);
  }
  
  .solutions-layout {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
  }
  
  .solutions-screen {
    order: -1;
    position: static;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    width: 100%;
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    height: auto;
    min-height: auto;
    display: block;
  }
  
  .solutions-screen.no-screen-frame {
    height: auto;
    min-height: auto;
  }

  .solutions-screen::before {
    display: none;
  }
  
  .solutions-screen img {
    width: 100%;
    height: auto;
    border-radius: 0;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 728 / 472;
  }

  .solutions-screen.no-screen-frame img {
    height: auto;
    object-fit: contain;
  }
  
  .solutions-grid {
    gap: var(--spacing-sm);
  }
  
  .solution-card {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .solution-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  
  .solution-icon img {
    width: 26px;
    height: 26px;
  }
  
  .solution-title {
    font-size: 14px;
  }

  /* Checkpoint images responsive */
  .checkpoint-images {
    flex-direction: column;
    gap: var(--spacing-sm);
    display: flex !important;
    width: 100% !important;
  }

  .checkpoint-image-container {
    min-height: 200px !important;
    height: 200px;
    width: 100% !important;
    flex: none !important;
    max-width: 100%;
    display: block !important;
    position: relative !important;
  }

  /* Asegurar que las imágenes dentro de tabs-mobile-visual sean visibles */
  .tabs-mobile-visual {
    width: 100% !important;
    max-width: 100% !important;
  }

  .tabs-mobile-visual .checkpoint-images {
    width: 100% !important;
    max-width: 100% !important;
  }

  .tabs-mobile-visual .checkpoint-image-container {
    width: 100% !important;
    min-height: 200px !important;
    height: 200px !important;
  }

  .mode-card-overlay {
    padding: var(--spacing-md);
  }

  .mode-title {
    font-size: 16px;
  }

  .mode-description {
    font-size: 13px;
  }

  .companies {
    padding: var(--spacing-2xl) 0;
  }
  
  .companies .section-header {
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
  }
  
  
  .heart-icon {
    font-size: 20px;
  }
  
  .carousel-track {
    gap: var(--spacing-lg);
  }
  
  .companies-carousel {
    margin-bottom: 0;
  }

  .company-logo {
    width: 250px !important;
    height: 160px !important;
    padding: var(--spacing-lg) !important;
  }


  .implementation {
    padding: var(--spacing-2xl) 0;
  }
  
  .implementation .section-header {
    margin-bottom: var(--spacing-2xl);
  }
  
  .implementation-steps {
    flex-direction: column;
    gap: var(--spacing-xl);
    text-align: center;
    align-items: center;
  }
  
  .implementation-step {
    text-align: center;
  }
  
  .step-header {
    justify-content: center;
  }
  
  .implementation-step .step-title {
    font-size: 16px;
  }
  
  .implementation-step .step-description {
    font-size: 14px;
  }
  

  .help-desk {
    padding: var(--spacing-2xl) 0 var(--spacing-lg) 0;
  }
  
  .help-desk .section-header {
    margin-bottom: var(--spacing-xl);
  }

  .help-desk-image {
    margin-bottom: var(--spacing-2xl);
  }
  
  .help-desk-grid {
    margin-bottom: calc(-1 * var(--spacing-3xl));
  }
  
  .help-desk-card {
    padding: var(--spacing-lg);
  }
  
  .help-desk-title {
    font-size: 18px;
  }
  
  .help-desk-description {
    font-size: 14px;
  }

  .why-choose {
    padding: calc(var(--spacing-2xl) + var(--spacing-3xl)) 0 var(--spacing-2xl) 0;
  }
  
  .why-choose-header {
    margin-bottom: var(--spacing-xl);
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr !important;
    gap: var(--spacing-lg);
  }
  
  .why-choose-card {
    align-items: center;
    padding: var(--spacing-xs);
  }
  
  .why-choose-icon-img {
    width: 40px;
    height: 40px;
  }
  
  .why-choose-title {
    font-size: 18px;
  }
  
  .why-choose-description {
    font-size: 14px;
  }

  .follow {
      padding: var(--spacing-lg) 0;
  }

  .follow-header {
      margin-bottom: var(--spacing-2xl);
  }

  .social-buttons {
      flex-direction: column;
      align-items: center;
      gap: var(--spacing-md);
  }

  .social-button {
      width: 100%;
      max-width: 280px;
      min-width: auto;
  }

  .social-text {
      font-size: 14px;
  }

  /* Botón específico para reducir font-size en mobile */
  .btn-liquidar {
    font-size: 12px;
    padding: 6px;
  }

  /* FAQ responsive styles moved to components.css */
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  /* Títulos de secciones para pantallas muy pequeñas */
  .benefits-title,
  .solutions-title,
  .why-choose-section-title,
  .follow-title,
  .help-desk-section-title,
  .automations-title,
  .reports-title,
  .companies-title,
  .implementation-title,
  .faq-title {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
  }

  
  .testimonial-card::before {
    font-size: 36px;
  }
  
  /* Homologable Section Mobile */
  .homologable-card {
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
  }
  
  .homologable-title {
    font-size: 24px;
  }
  
  .homologable-description {
    font-size: 14px;
  }
  
  .feature-checkmark {
    width: 28px;
    height: 28px;
  }
  
  .homologable-feature span {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .solutions-layout {
    gap: var(--spacing-2xl);
  }

  .hero-kpis {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .solutions .container {
    padding: 0 var(--spacing-xl);
  }
  
  .solutions-layout {
    gap: var(--spacing-xl);
  }
  
  .solution-card {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .solution-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  
  .solution-icon img {
    width: 24px;
    height: 24px;
  }
  
  .solution-title {
    font-size: 14px;
  }

  .automations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  
  .company-logo {
    width: 200px !important;
    height: 130px !important;
  }
  

  .implementation-steps {
    gap: var(--spacing-lg);
  }
  
  .step-chevrons {
    width: 20px;
    height: 20px;
  }
  
  .implementation-step .step-title {
    font-size: 15px;
  }
  
  .implementation-step .step-description {
    font-size: 13px;
  }

  .help-desk-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  .why-choose-icon-img {
    width: 44px;
    height: 44px;
  }
  
  /* Homologable Section Tablet */
  .homologable-card {
    gap: var(--spacing-xl);
  }
  
  .homologable-content {
    max-width: 450px;
  }
}


