/* ==========================================================================
   ContaPyme - Styles - OPTIMIZED VERSION
   ========================================================================== */

/* CSS Custom Properties (Variables) */
:root {
  /* Colors */
  --primary-blue: #00AAF8;
  --secondary-blue: #004EA6;
  --white: #ffffff;
  --black: #000000;
  --gray-border: #E4E8F2;
  
  /* Typography */
  --font-family-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 14px;
  --font-size-sm: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 47.78px;
  
  /* Spacing */
  --spacing-xs: 10px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 24px;
  --spacing-xxl: 30px;
  --spacing-xxxl: 60px;
  
  /* Border Radius */
  --border-radius-button: 50px;
  --border-radius-image: 15px;
  
  /* Breakpoints */
  --breakpoint-mobile: 768px;
  
  /* Max Widths */
  --max-width-container: 1600px;
  --max-width-text: 630px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Ensure both sections have consistent alignment */
.hero-section .container,
.features-section .container {
  padding: 0 var(--spacing-md);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

p {
  margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Header Section
   ========================================================================== */

.header {
  background: #004EA6;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-image {
  height: 45px;
  width: auto;
  max-width: 250px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  background-color: var(--primary-blue);
  padding: 150px 0px 30px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  min-width: 450px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  max-width: 654px;
}

.hero-image {
  flex: 1;
  min-width: 450px;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image iframe {
  width: 100%;
  max-width: 900px;
  height: 450px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  object-fit: cover;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: 20px;
  color: var(--white);
}

.breadcrumb-separator {
  color: var(--white);
}

.breadcrumb-item.current {
  font-weight: 600;
}

/* ==========================================================================
   Typography Styles
   ========================================================================== */

.hero-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 42px;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.hero-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Button Styles
   ========================================================================== */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xs) var(--spacing-lg);
  background-color: var(--secondary-blue);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 18px;
  font-family: var(--font-family-primary);
  border: none;
  border-radius: var(--border-radius-button);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.cta-button:hover {
  background-color: #003d85;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 78, 166, 0.3);
}

.cta-button:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.cta-button:active {
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Design - Mobile First
   ========================================================================== */

/* ==========================================================================
   LAPTOP RESOLUTIONS (1333px - 1280px) - OPTIMIZED
   ========================================================================== */

/* LAPTOP GENERAL - Para todas las resoluciones de laptop */
@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .hero-content {
    gap: 90px !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .hero-text {
    min-width: 300px !important;
    max-width: 500px !important;
  }
  
  .hero-image {
    min-width: 300px !important;
    max-width: 550px !important;
  }
  
  .hero-image iframe {
    max-width: 550px !important;
    height: 320px !important;
  }
  
  /* FEATURES SECTION - Laptop General */
  .features-grid {
    gap: 25px !important;
  }
  
  .feature-card {
    width: 240px !important;
    padding: 22px 18px !important;
    min-height: 190px !important;
  }
  
  .feature-title {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  
  .feature-description {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  
  /* SUPPORT SECTION - Laptop General */
  .support-cards {
    gap: 55px !important;
  }
  
  .support-card {
    flex: 1 !important;
    max-width: 420px !important;
  }
  
  .support-card-image {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 30px !important;
  }
  
  .support-card-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 380px !important;
  }
  
  .support-card-title {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  
  .support-card-description {
    font-size: 16px !important;
    line-height: 22px !important;
  }
}

/* 1366px - Laptop estándar */
@media screen and (max-width: 1600px) and (min-width: 1200px) {
  .hero-content {
    gap: 75px !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .hero-text {
    min-width: 320px !important;
    max-width: 520px !important;
  }
  
  .hero-image {
    min-width: 320px !important;
    max-width: 580px !important;
  }
  
  .hero-image iframe {
    max-width: 580px !important;
    height: 330px !important;
  }
  
  /* FEATURES SECTION - 1366px */
  .features-grid {
    gap: 22px !important;
  }
  
  .feature-card {
    width: 230px !important;
    padding: 20px 16px !important;
    min-height: 185px !important;
  }
  
  .feature-title {
    font-size: 17px !important;
    line-height: 23px !important;
  }
  
  .feature-description {
    font-size: 13px !important;
    line-height: 19px !important;
  }
  
  /* SUPPORT SECTION - 1366px */
  .support-cards {
    gap: 50px !important;
  }
  
  .support-card {
    flex: 1 !important;
    max-width: 400px !important;
  }
  
  .support-card-image {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 28px !important;
  }
  
  .support-card-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 350px !important;
  }
  
  .support-card-title {
    font-size: 19px !important;
    line-height: 25px !important;
  }
  
  .support-card-description {
    font-size: 15px !important;
    line-height: 20px !important;
  }
}

/* 1333px - Medium laptops */
@media screen and (max-width: 1333px) and (min-width: 1201px) {
  .container {
    padding: 0 40px;
  }
  
  .hero-section .container,
  .features-section .container {
    padding: 0 40px;
  }
  
  .hero-content {
    gap: 80px !important;
    max-width: 1400px !important;
    width: 100% !important;
  }
  
  .hero-text {
    min-width: 350px;
    max-width: 550px;
    padding-left: 20px;
  }
  
  .hero-main {
    max-width: 550px;
  }
  
  .hero-title {
    font-size: 38px;
    line-height: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    line-height: 22px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 22px;
  }
  
  .hero-image {
    min-width: 350px;
    max-width: 650px;
    padding-right: 20px;
  }
  
  .hero-image img {
    max-width: 650px;
  }
  
  .hero-image iframe {
    max-width: 650px;
    height: 360px;
    border-radius: 20px;
  }
  
  .features-grid {
    gap: 25px;
  }
  
  .feature-card {
    width: 220px;
    padding: 25px 18px;
    min-height: 200px;
  }
  
  .feature-title {
    font-size: 16px;
    line-height: 20px;
  }
  
  .feature-description {
    font-size: 14px;
    line-height: 18px;
  }
  
  .content-image iframe {
    max-width: 460px;
    height: 258px;
  }
  
  .content-wrapper {
    gap: 18px;
  }
}

/* 1280px - Standard laptops */
@media screen and (max-width: 1280px) and (min-width: 1025px) {
  .container {
    padding: 0 35px;
  }
  
  .hero-section .container,
  .features-section .container {
    padding: 0 35px;
  }
  
  .hero-content {
    gap: 70px !important;
    max-width: 1200px !important;
    width: 100% !important;
  }
  
  .hero-text {
    min-width: 320px;
    max-width: 500px;
    padding-left: 15px;
  }
  
  .hero-main {
    max-width: 500px;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 40px;
  }
  
  .hero-subtitle {
    font-size: 17px;
    line-height: 21px;
  }
  
  .hero-description {
    font-size: 15px;
    line-height: 21px;
  }
  
  .hero-image {
    min-width: 320px;
    max-width: 600px;
    padding-right: 15px;
  }
  
  .hero-image img {
    max-width: 600px;
  }
  
  .hero-image iframe {
    max-width: 600px;
    height: 340px;
    border-radius: 20px;
  }
  
  .features-title {
    font-size: 28px;
    line-height: 32px;
  }
  
  .features-grid {
    gap: 20px;
  }
  
  .feature-card {
    width: 200px;
    padding: 22px 16px;
    min-height: 180px;
  }
  
  .feature-title {
    font-size: 15px;
    line-height: 19px;
  }
  
  .feature-description {
    font-size: 13px;
    line-height: 17px;
  }
  
  .features-tabs-section {
    padding: 50px 0;
  }
  
  .tabs-content {
    gap: 30px;
  }
  
  .tabs-title {
    font-size: 26px;
    line-height: 30px;
  }
  
  .tabs-container {
    gap: 15px;
    max-height: 450px;
  }
  
  .tabs-nav {
    width: 280px;
    padding: 15px;
    gap: 8px;
  }
  
  .tab-button {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 15px;
  }
  
  .tabs-content-panel {
    padding: 35px 25px;
    min-height: 450px;
  }
  
  .content-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .content-description {
    font-size: 15px;
    line-height: 19px;
  }
  
  .pricing-amount {
    font-size: 1.6rem;
  }
  
  .pricing-plan-title {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-section .container,
  .features-section .container {
    padding: 0 20px;
  }
  
  /* Reducir significativamente el gap del hero content */
  .hero-content {
    justify-content: space-between !important;
    gap: 15px !important;
  }
  
  .hero-text {
    min-width: 320px !important;
    max-width: 420px !important;
    flex: 1 !important;
    padding-left: 30px !important;
  }
  
  .hero-main {
    max-width: 420px !important;
    padding-left: 0 !important;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    line-height: 22px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 22px;
  }
  
  .hero-image {
    min-width: 320px !important;
    max-width: 450px !important;
    flex: 1 !important;
  }
  
  .hero-image img {
    max-width: 450px !important;
  }
  
  .hero-image iframe {
    max-width: 450px !important;
    height: 280px !important;
    border-radius: 20px !important;
  }
}

/* Media query específico para forzar cambios en 1024px */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .hero-content {
    gap: 10px !important;
    justify-content: space-between !important;
  }
  
  .hero-text {
    min-width: 350px !important;
    max-width: 450px !important;
    padding-left: 30px !important;
    margin-left: 0 !important;
  }
  
  .hero-main {
    padding-left: 0 !important;
  }
  
  .hero-image {
    min-width: 350px !important;
    max-width: 500px !important;
    padding-right: 30px !important;
  }
  
  .hero-image iframe {
    max-width: 500px !important;
    height: 300px !important;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 100px 0px 40px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .hero-text {
    min-width: auto;
    width: 100%;
    order: 2;
    text-align: center;
  }
  
  .hero-main {
    max-width: none;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  
  .hero-image {
    min-width: auto;
    width: 100%;
    order: 1;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }
  
  .hero-image iframe {
    max-width: 100%;
    height: 200px;
    min-height: 180px;
    border-radius: 20px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-subtitle {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: var(--spacing-md);
    text-align: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 260px;
  }
}

/* Media query para monitores más pequeños */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 20px;
  }
  
  .hero-description {
    font-size: 14px;
    line-height: 20px;
  }
  
  .breadcrumb {
    justify-content: center;
  }
}

/* ==========================================================================
   Accessibility Improvements
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for better accessibility */
*:focus-visible {
  outline: 2px solid var(--secondary-blue);
  outline-offset: 2px;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .hero-section {
    background: none !important;
    color: var(--black) !important;
  }
  
  .hero-title,
  .hero-subtitle,
  .hero-description,
  .breadcrumb {
    color: var(--black) !important;
  }
  
  .cta-button {
    border: 1px solid var(--black);
    background: none !important;
    color: var(--black) !important;
  }
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
  padding: var(--spacing-xxxl) 0;
  background-color: var(--white);
}

.features-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xxxl);
}

.features-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs);
}

.features-title {
  font-size: 33.18px;
  font-weight: 700;
  line-height: 39px;
  color: var(--black);
  text-align: center;
  margin: 0;
  max-width: 800px;
}

.features-grid {
  width: 100%;
  max-width: var(--max-width-container);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}

.feature-card {
  flex: 0 0 auto;
  width: 280px;
  height: auto;
  min-height: 260px;
  padding: 40px 30px;
  border: 1px solid var(--gray-border);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.feature-icon {
  width: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  min-height: 86px;
  flex: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--black);
  margin: 0;
  min-height: 21px;
}

.feature-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black);
  margin: 0;
  min-height: 65px;
}

/* ==========================================================================
   Responsive Design - Features Section
   ========================================================================== */

/* Tablet and small desktop adjustments */
/* DUPLICATED - REMOVED */

@media screen and (max-width: 1024px) {
  .features-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .features-grid {
    gap: 15px;
  }
  
  .feature-card {
    width: 170px;
    height: auto;
    min-height: 170px;
    padding: 20px 14px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-title {
    font-size: 14px;
    line-height: 16px;
    min-height: 16px;
  }
  
  .feature-description {
    font-size: 12px;
    line-height: 16px;
    height: auto;
  }
}


@media screen and (max-width: 768px) {
  .features-section {
    padding: 40px 0;
  }
  
  .features-content {
    gap: 30px;
  }
  
  .features-title {
    font-size: 24px;
    line-height: 1.2;
  }
  
  /* Cambiar grid a columna en mobile */
  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  /* Ocultar slider en mobile ya que no se usa */
  .features-slider {
    display: none;
  }
  
  .feature-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 200px;
    padding: 30px 20px;
    gap: 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-title {
    height: auto;
    text-align: center;
    font-size: 18px;
  }
  
  .feature-description {
    height: auto;
    text-align: left;
    font-size: 14px;
  }

  /* Support Section Mobile */
  .support-section {
    padding: 40px 0;
  }
  
  /* Mostrar support cards en fila vertical en mobile */
  .support-cards {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
    align-items: center !important;
  }
  
  /* Ocultar support slider en mobile ya que no se usa */
  .support-slider {
    display: none;
  }
  
  .support-card {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: auto;
    padding: 30px 20px;
    gap: 20px;
  }
  
  .support-card-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
  }
  
  .support-card-content {
    text-align: left;
  }
  
  .support-card-title {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    margin-bottom: 12px;
  }
  
  .support-card-description {
    font-size: 14px;
    line-height: 18px;
    text-align: left;
  }
  
}

/* ==========================================================================
   Features Tabs Section
   ========================================================================== */

.features-tabs-section {
  background-color: #E9F3FF;
  padding: 98px 0;
}

/* DUPLICATED - REMOVED */

/* Responsive adjustments for laptop resolutions (1366x768) */
@media screen and (max-width: 1366px) and (min-width: 1025px) {
  
  .container {
    padding: 0 40px;
  }
  
  .hero-section .container,
  .features-section .container {
    padding: 0 40px;
  }
  
  /* Ajustar gap del hero content para mantener proporciones */
  .hero-content {
    gap: 60px;
  }
  
  .hero-text {
    min-width: 300px;
    max-width: 500px;
  }
  
  .hero-main {
    max-width: 500px;
  }
  
  .features-grid {
    gap: 20px;
  }
  
  .feature-card {
    width: 207px;
    padding: 20px 16px;
    min-height: 180px;
  }
  
  .feature-title {
    font-size: 16px;
  }
  
  .feature-description {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  /* Ajustes para hero image e iframe */
  .hero-image {
    min-width: 350px;
    max-width: 600px;
  }
  
  .hero-image iframe {
    max-width: 600px;
    height: 350px;
  }
  
  /* Ajustes para tabs section */
  .features-tabs-section {
    padding: 160px 0;
  }
  
  .tabs-content {
    gap: 20px;
  }
  
  .tabs-nav {
    gap: 8px;
  }
  
  .tab-button {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  /* Ajustes para pricing section */
  .pricing-section {
    padding: 40px 0;
  }
  
  .pricing-cards-grid {
    gap: 20px;
  }
  
  .pricing-plan-card {
    padding: 24px 20px;
  }
  
  /* Ajustes para testimonials */
  .testimonials-section {
    padding: 40px 0;
  }
  
  /* Ajustes para demo section */
  .demo-section {
    padding: 40px 0;
  }
  
  .demo-title {
    font-size: 28px;
    line-height: 32px;
  }
}

/* DUPLICATED - REMOVED */

/* Específico para resolución 1366x768 - Ajustes finos */
@media screen and (max-width: 1366px) and (max-height: 768px) {
  .container {
    padding: 0 35px;
  }
  
  .hero-section .container,
  .features-section .container {
    padding: 0 35px;
  }
  
  /* Ajustar gap del hero content para mantener proporciones */
  .hero-content {
    gap: 50px;
  }
  
  .hero-text {
    min-width: 280px;
    max-width: 450px;
  }
  
  .hero-main {
    max-width: 450px;
  }
  
  .features-grid {
    gap: 18px;
  }
  
  .feature-card {
    width: 190px;
    padding: 18px 15px;
    min-height: 170px;
  }
  
  .feature-title {
    font-size: 15px;
  }
  
  .feature-description {
    font-size: 13px;
  }
  
  .hero-title {
    font-size: 34px;
    line-height: 38px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .hero-image {
    min-width: 320px;
    max-width: 550px;
  }
  
  .hero-image iframe {
    max-width: 550px;
    height: 320px;
  }
  
  /* Reducir padding de secciones */
  .features-section {
    padding: 50px 0;
  }
  
  .features-tabs-section {
    padding: 160px 0;
  }
  
  .pricing-section {
    padding: 35px 0;
  }
  
  .testimonials-section {
    padding: 35px 0;
  }
  
  .demo-section {
    padding: 35px 0;
  }
}

/* Responsive adjustments for smaller laptops (1200px) */
@media screen and (max-width: 1200px) and (min-width: 1025px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-section .container,
  .features-section .container {
    padding: 0 30px;
  }
  
  /* Ajustar gap del hero content para mantener proporciones */
  .hero-content {
    gap: 45px;
  }
  
  .hero-text {
    min-width: 260px;
    max-width: 400px;
  }
  
  .hero-main {
    max-width: 400px;
  }
  
  .features-grid {
    gap: 16px;
  }
  
  .feature-card {
    width: 180px;
    padding: 18px 14px;
    min-height: 160px;
  }
  
  .feature-title {
    font-size: 15px;
  }
  
  .feature-description {
    font-size: 13px;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  /* Ajustes para hero image e iframe en laptops más pequeños */
  .hero-image {
    min-width: 300px;
    max-width: 500px;
  }
  
  .hero-image iframe {
    max-width: 500px;
    height: 300px;
  }
  
  /* Ajustes adicionales para tabs */
  .tab-button {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .tabs-nav {
    gap: 6px;
  }
  
  /* Ajustes para pricing */
  .pricing-plan-card {
    padding: 20px 16px;
  }
  
  .pricing-amount {
    font-size: 1.4rem;
  }
  
  /* Ajustes para demo */
  .demo-title {
    font-size: 26px;
    line-height: 30px;
  }
}

/* Responsive adjustments for 1024px */
@media screen and (max-width: 1024px) {
  .features-tabs-section {
    padding: 40px 0;
  }
  
  .tabs-content {
    gap: 25px;
  }
  
  .tabs-title {
    font-size: 22px;
    line-height: 26px;
  }
  
  .tabs-container {
    gap: 12px;
    max-height: 380px;
  }
  
  .tabs-nav {
    width: 250px;
    padding: 12px;
    gap: 4px;
  }
  
  .tab-button {
    padding: 5px 8px;
    font-size: 10px;
    line-height: 12px;
  }
  
  .tab-button span {
    font-size: 12px !important;
    line-height: 12px !important;
  }
  
  .tabs-content-panel {
    width: 100%;
    max-width: 650px;
    min-height: 380px;
    padding: 25px 15px;
    gap: 12px;
  }
  
  .content-text {
    max-width: 320px;
    gap: 10px;
  }
  
  .content-title {
    font-size: 18px;
    line-height: 22px;
  }
  
  .content-description {
    font-size: 12px;
    line-height: 16px;
  }
  
  .steps-title {
    font-size: 14px;
    line-height: 18px;
  }
  
  .step-item {
    gap: 5px;
    margin-bottom: 8px;
  }
  
  .step-number {
    min-width: 16px;
    font-size: 12px;
    line-height: 14px;
  }
  
  .step-text {
    font-size: 12px;
    line-height: 16px;
  }

  /* Features List Mobile */
  .features-list {
    max-width: 100%;
    gap: 6px;
  }

  .feature-item {
    gap: 4px;
  }

  .feature-check {
    width: 9px;
    height: 7px;
  }

  .feature-text {
    font-size: 14px;
    line-height: 18px;
  }

  /* Mobile Features List */
  .mobile-features-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }

  .mobile-feature-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
  }

  .mobile-feature-check {
    width: 9px;
    height: 7px;
    flex-shrink: 0;
  }

  .mobile-feature-no {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
  }

  .mobile-feature-text {
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
  }

  /* Mobile Audit Highlight */
  .mobile-audit-highlight {
    width: 100%;
    margin-top: 15px;
  }

  .mobile-audit-text {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
  }

  /* Mobile Formato Highlight */
  .mobile-formato-highlight {
    width: 100%;
    margin-top: 15px;
  }

  .mobile-formato-text {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
  }

  /* Mobile Exógena Steps */
  .mobile-exogena-steps {
    width: 100%;
    margin-top: 15px;
  }

  .mobile-exogena-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .mobile-exogena-step-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
  }

  .mobile-exogena-step-number {
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    flex-shrink: 0;
  }

  .mobile-exogena-step-text {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    flex: 1;
  }

  .mobile-exogena-highlight {
    width: 100%;
  }

  .mobile-exogena-highlight-text {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
  }

  
  .content-image img {
    max-width: 300px;
    max-height: 180px;
  }

  .content-image video {
    max-width: 300px;
    max-height: 180px;
    border-radius: 15px;
    object-fit: cover;
  }

  .mobile-content-image video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
  }
}

.tabs-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xxxl);
}

.tabs-header {
  text-align: center;
}

.tabs-title {
  font-size: 33.18px;
  font-weight: 700;
  line-height: 39px;
  margin: 0;
}

.title-blue {
  color: var(--primary-blue);
}

.title-black {
  color: var(--black);
}

.tabs-container {
  max-height: 600px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 21px;
  width: 100%;
}

/* ==========================================================================
   Tabs Navigation
   ========================================================================== */

.tabs-nav {
  width: 100%;
  max-width: 303px;
  min-height: 465px;
  padding: 0 47px;
  background: var(--white);
  border-radius: var(--border-radius-image);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
}

.tabs-more {
  width: 100%;
  display: none; /* Hidden by default on desktop */
}

.more-button {
  width: 100%;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.more-menu {
  position: relative;
  width: 100%;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.more-menu .tab-button {
  border: none;
  padding: 10px 12px;
}

.tab-button {
  width: 100%;
  padding: 11px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all 0.3s ease;
}

.tab-button:last-child {
  border-bottom: none;
}

.tab-button:hover {
  background-color: rgba(0, 170, 248, 0.05);
}

.tab-button.active {
  border-bottom: 3px solid #00BFFF;
}

.tab-button span {
  flex: 1;
  color: #1B1E35;
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 18px;
  text-align: left;
  transition: color 0.3s ease;
}

.tab-button.active span {
  color: var(--primary-blue);
}

/* ==========================================================================
   Tabs Content Panel
   ========================================================================== */

.tabs-content-panel {
  width: 100%;
  max-width: 1194.72px;
  min-height: 365px;
  padding: 79px 64px;
  background: var(--white);
  border-radius: var(--border-radius-image);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 38px;
  position: relative;
}

.tab-content {
  display: none;
  width: 100%;
  height: 100%;
}

.tab-content.active {
  display: flex;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  width: 100%;
  height: 100%;
}

.content-text {
  flex: 1;
  min-width: 300px;
  min-height: 266px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--spacing-lg);
}

.content-title {
  color: var(--primary-blue);
  font-size: 27.65px;
  font-weight: 700;
  line-height: 31px;
  margin: 0;
}

.content-description {
  color: var(--black);
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.steps-section {
  width: 100%;
}

.steps-title {
  color: var(--black);
  font-size: 27.65px;
  font-weight: 700;
  line-height: 31px;
  margin: 0 0 var(--spacing-lg) 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  color: var(--primary-blue);
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 20px;
  min-width: 25px;
  display: flex;
  align-items: flex-start;
  margin-right: var(--spacing-xs);
}

.step-text {
  color: var(--black);
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 20px;
  flex: 1;
}

/* Features List Styles */
.features-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.feature-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

.feature-check {
  width: 17px;
  height: 9px;
  flex-shrink: 0;
}

.feature-no {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.feature-text {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

/* Audit Highlight Styles */
.audit-highlight {
  width: 100%;
  max-width: 480px;
  margin-top: 20px;
}

.audit-text {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
}

/* Formato Highlight Styles */
.formato-highlight {
  width: 100%;
  max-width: 472px;
  margin-top: 20px;
}

.formato-text {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
}

/* Exógena Steps Styles */
.exogena-steps {
  width: 100%;
  max-width: 480px;
  margin-top: 20px;
}

.exogena-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.exogena-step-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.exogena-step-number {
  color: #00AAF8;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  flex-shrink: 0;
}

.exogena-step-text {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  flex: 1;
}

.exogena-highlight {
  width: 100%;
  max-width: 299px;
}

.exogena-highlight-text {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

/* Pago Steps Styles */
.pago-steps {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pago-highlight {
  width: 100%;
  max-width: 299px;
}

.pago-highlight-text {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.pago-steps-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pago-step-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pago-step-number {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  flex-shrink: 0;
  min-width: 25px;
}

.pago-step-text {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  flex: 1;
}

.pago-step-text strong {
  font-weight: 700;
}

/* Mobile Pago Steps */
.mobile-pago-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-pago-highlight {
  width: 100%;
  margin-top: 15px;
}

.mobile-pago-highlight-text {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
}

.mobile-pago-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-pago-step-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.mobile-pago-step-number {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  flex-shrink: 0;
  min-width: 20px;
}

.mobile-pago-step-text {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  flex: 1;
}

.mobile-pago-step-text strong {
  font-weight: 700;
}

/* ================================
   Pricing Cards Styles - From cards.css
   ================================ */

/* ---------- Grid INTELIGENTE con Auto-Organización ---------- */
.pricing-cards-grid {
  display: grid !important;
  gap: 20px !important;
  padding: 20px 0 30px 0 !important;
  justify-content: center !important;
  justify-items: center !important;
  align-items: stretch !important;
  overflow: visible !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 300px)) !important;
  max-width: 100% !important;
}

/* ---------- Card base CON DIMENSIONES OPTIMIZADAS ---------- */
.pricing-plan-card {
  --accent: #00AAF8;

  background: #fff !important;
  border-radius: 15px !important;
  padding: 30px 25px !important;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08) !important;
  border: 2px solid #e2e8f0 !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  min-height: 520px !important;
  display: flex !important;
  flex-direction: column !important;

  width: 100% !important;
  max-width: 300px !important;
  min-width: 280px !important;
  margin: 0 auto !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}

.pricing-plan-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.pricing-plan-card[class*="contable-"] {
  border-left: 6px solid var(--accent) !important;
}

/* ---------- Header de la card ---------- */
.pricing-card-header { 
  text-align: center !important; 
}

.pricing-plan-card .pricing-plan-badge {
  display: inline-block !important;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 4px 12px !important;
  border-radius: 15px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  margin-bottom: 12px !important;
  border: 1px solid var(--accent) !important;
}

.pricing-plan-desc {
  font-size: 14px !important;
  color: #718096 !important;
  margin-bottom: 15px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  max-width: 200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.pricing-plan-title {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #1a202c !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
}

/* ---------- Precio ---------- */
.pricing-price-section {
  text-align: center !important;
  margin-bottom: 25px !important;
}

.pricing-price-display {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  margin-bottom: 8px !important;
}

.pricing-amount {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #1a202c !important;
}

.pricing-period {
  font-size: 1rem !important;
  color: #718096 !important;
  margin-left: 6px !important;
}

.pricing-note {
  font-size: 14px !important;
  color: #718096 !important;
}

/* ---------- Features ---------- */
.pricing-features {
  margin-bottom: 25px !important;
  flex: 1 !important;
}

.pricing-features-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pricing-feature-item {
  display: flex !important;
  align-items: flex-start !important;
  padding: 8px 0 !important;
  font-size: 18px !important;
}

.pricing-feature-icon {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 12px !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

.pricing-plan-card .pricing-feature-included {
  background: transparent !important;
  border: 2px solid var(--accent) !important;
  color: var(--accent) !important;
  border-radius: 50% !important;
  width: 16px; 
  height: 16px;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  line-height: 1; 
  box-sizing: border-box;
  font-size: 13px !important;
}

.pricing-feature-text {
  color: #4a5568 !important;
  line-height: 1.4 !important;
  font-size: 15px !important;
}

/* ---------- CTA ---------- */
.pricing-cta-section { 
  text-align: center !important; 
  margin-top: auto !important; 
}

.pricing-cta-button {
  width: 100% !important;
  padding: 16px 24px !important;
  border: 2px solid var(--accent) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--accent) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.pricing-cta-button:hover {
  background: var(--accent) !important;
  color: #fff !important;
  text-decoration: none !important;
}

.pricing-annual-note {
  margin-top: 15px !important;
  font-size: 10px !important;
  color: #718096 !important;
  font-style: italic !important;
}

/* ---------- Mapeo de colores por tipo de plan ---------- */
.contable-basico     { --accent: #7CD6FF; }
.contable-estandar   { --accent: #50C8FF; }

/* DUPLICATED - REMOVED */

@media (max-width: 1024px) {
  .pricing-amount { 
    font-size: 1.5rem !important; 
  }
  
  .pricing-plan-title {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 768px) {
  .pricing-amount { 
    font-size: 1.4rem !important; 
  }
  
  .pricing-plan-title {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {
  .pricing-plan-card { 
    padding: 30px 20px !important; 
    min-width: 250px !important;
    max-width: 100% !important;
  }
  
  .pricing-amount { 
    font-size: 1.3rem !important; 
  }
  
  .pricing-plan-title {
    font-size: 1.0rem !important;
  }
}

.content-image {
  flex: 1;
  min-width: 300px;
  min-height: 299px;
}

.content-image video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-image iframe {
  width: 100%;
  max-width: 533px;
  height: 299px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-image img {
  width: 100%;
  max-width: 533px;
  height: 299px;
  border-radius: var(--border-radius-image);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* ==========================================================================
   Support Section
   ========================================================================== */


.support-pagination-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #E4E8F2 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 4px;
}

.support-pagination-dot.active {
  background: #00AAF8 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

.support-section {
  padding: 98px 0;
  background: var(--white);
}

.support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support-title {
  margin-bottom: 20px;
  font-size: 33.18px;
  line-height: 39px;
  font-weight: 700;
}

.support-title-blue {
  color: var(--primary-blue);
}

.support-title-black {
  color: var(--text-primary);
}

.support-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-secondary);
  font-weight: 400;
}

.support-cards {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

.support-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-card-image {
  width: 85%;
  height: 75%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.support-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.support-card-content {
  width: 100%;
  text-align: center;
}

.support-card-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: left;
}

.support-card-description {
  font-size: 16px;
  line-height: 20px;
  color: var(--text-secondary);
  font-weight: 400;
  text-align: left;
}

/* ==========================================================================
   Mobile Support Section (solo visible en mobile)
   ========================================================================== */

.mobile-support-section {
  display: none;
}

@media screen and (max-width: 768px) {
  /* Ocultar sección desktop en mobile */
  /* Support section visible in mobile */
  
  /* Mostrar sección mobile */
  .mobile-support-section {
    display: block;
    padding: 60px 0;
    background: var(--white);
  }
  
  .mobile-support-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .mobile-support-title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
  }
  
  .mobile-support-title-blue {
    color: var(--primary-blue);
  }
  
  .mobile-support-title-black {
    color: var(--text-primary);
  }
  
  .mobile-support-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-secondary);
    font-weight: 400;
  }
  
  .mobile-support-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .mobile-support-card {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .mobile-support-card-image {
    width: 100%;
    max-width: 280px;
    height: 180px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .mobile-support-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
  }
  
  .mobile-support-card-content {
    width: 100%;
  }
  
  .mobile-support-card-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
  }
  
  .mobile-support-card-description {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-secondary);
    font-weight: 400;
  }
  
  /* Tabs Section Mobile */
  .features-tabs-section {
    padding: var(--spacing-xl) 0;
  }
  
  .tabs-content {
    gap: var(--spacing-xl);
  }
  
  .tabs-title {
    font-size: 20px;
    line-height: 24px;
  }
  
  .tabs-container {
    gap: var(--spacing-md);
  }
  
  .tabs-nav {
    padding: var(--spacing-sm);
    flex-direction: row;
    height: auto;
    overflow-x: auto;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
    background: transparent;
    z-index: 100;
  }
  
  .tab-button {
    min-width: auto;
    width: auto;
    border-right: none;
    border-bottom: none;
    text-align: left;
    padding: var(--spacing-sm) var(--spacing-md);
    flex-shrink: 0;
    white-space: nowrap;
    background: transparent;
    margin-right: var(--spacing-md);
  }
  
  .tab-button.active {
    border-bottom: 3px solid var(--primary-blue);
    color: var(--primary-blue);
  }
  
  .tab-button.active span {
    color: var(--primary-blue);
  }
  
  .tabs-more {
    width: auto;
    flex-shrink: 0;
    position: absolute;
    right: var(--spacing-sm);
    top: var(--spacing-sm);
    z-index: 9999;
    display: none;
  }
  
  .more-button {
    width: auto;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    white-space: nowrap;
  }
  
  .more-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    z-index: 9999;
    margin-top: 4px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    max-height: 300px;
    overflow-y: auto;
    display: none;
  }
  
  .more-menu:not([hidden]) {
    display: block;
  }
  
  /* Menú centrado solo en mobile */
  .more-menu {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 250px;
    z-index: 999999 !important;
    background: var(--white) !important;
    border: 2px solid var(--primary-blue) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.3) !important;
    max-height: 400px;
    overflow-y: auto;
    padding: var(--spacing-sm);
  }
  
  .more-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
  }
  
  .more-menu .tab-button {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    text-align: left;
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .more-menu .tab-button:last-child {
    border-bottom: none;
  }
  
  .tabs-content-panel {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 1;
  }
  
  .content-title {
    font-size: 20px;
    line-height: 24px;
  }
  
  .steps-title {
    font-size: 18px;
    line-height: 22px;
  }
  
  .content-description {
    font-size: 14px;
    line-height: 18px;
  }
  
  .step-item {
    font-size: 14px;
    line-height: 18px;
  }
  
  .step-number {
    min-width: 24px;
    margin-right: 8px;
  }
  
  .content-image {
    min-width: auto;
    height: auto;
  }
  
  .content-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

/* ==========================================================================
   Responsive Design - Tabs Section
   ========================================================================== */

/* Solo mobile - diseño horizontal con menú "Más" */
/* ==========================================================================
   Mobile Tabs Section (solo visible en mobile)
   ========================================================================== */

.mobile-tabs-section {
  display: none !important;
}

@media screen and (max-width: 768px) {
  /* Ocultar secciones desktop en mobile */
  /* Support section visible in mobile */
  
  .features-tabs-section {
    display: none !important;
  }
  
  /* Mostrar sección mobile */
  .mobile-tabs-section {
    display: block !important;
    background: #F8F8F8;
    padding: 35px 16px;
  }
  
  /* Mobile Tabs Navigation */
  .mobile-tabs-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  
  .mobile-tabs-container {
    width: 100%;
    max-width: 399.50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .mobile-tabs-track {
    width: 256px;
    overflow: hidden;
    display: flex;
    gap: 16px;
  }
  
  .mobile-tab-button {
    width: 240px;
    padding: 8px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid transparent;
  }
  
  .mobile-tab-button.active {
    border-bottom: 1px solid #00BFFF;
  }
  
  .mobile-tab-button span {
    flex: 1;
    color: black;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mobile-tab-button.active span {
    color: #00AAF8;
  }
  
  .mobile-more-button {
    flex: 1;
    height: 45px;
    padding: 12px 24px;
    background: #00AAF8;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    min-width: 120px;
    max-width: 180px;
  }
  
  .mobile-more-button span {
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }
  
  .mobile-tabs-content-panel {
    width: 100%;
  }
  
  .mobile-tab-content {
    display: none;
  }
  
  .mobile-tab-content.active {
    display: block;
  }
  
  .mobile-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 15px;
  }
  
  .mobile-content-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .mobile-content-title {
    color: #00AAF8;
    font-size: 23.04px;
    font-weight: 700;
    line-height: 25px;
    margin: 0;
  }
  
  .mobile-content-description {
    color: black;
    font-size: 13.33px;
    font-weight: 400;
    line-height: 16px;
    margin: 0;
  }
  
  .mobile-steps-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .mobile-steps-title {
    color: black;
    font-size: 23.04px;
    font-weight: 700;
    line-height: 25px;
    margin: 0;
    width: 248.97px;
  }
  
  .mobile-steps-list {
    width: 371.68px;
    height: 80.15px;
    color: black;
    font-size: 13.33px;
    font-weight: 400;
    line-height: 16px;
  }
  
  .mobile-step-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
  }
  
  .mobile-step-number {
    color: #00AAF8;
    font-size: 13.33px;
    font-weight: 700;
    line-height: 16px;
    min-width: 28.32px;
  }
  
  .mobile-step-text {
    color: black;
    font-size: 13.33px;
    font-weight: 400;
    line-height: 16px;
    flex: 1;
  }
  
  .mobile-content-image {
    flex: 1;
    min-width: 300px;
    height: 180px;
  }
  
  .mobile-content-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
  }
  
  .mobile-content-image iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  
  .mobile-video-section {
    padding: 15px 16px;
    border: 1px solid #00AAF8;
    border-radius: 15px;
    text-align: center;
    background: white;
    margin: 0 16px;
    box-sizing: border-box;
  }
  
  .mobile-video-text {
    width: 100%;
    max-width: 382px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .mobile-video-title {
    color: #00AAF8;
    font-size: 13.33px;
    font-weight: 700;
    line-height: 16px;
  }
  
  .mobile-video-description {
    color: black;
    font-size: 13.33px;
    font-weight: 700;
    line-height: 16px;
  }
  
  .mobile-more-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    z-index: 999999;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    max-height: 400px;
    overflow-y: auto;
    padding: var(--spacing-sm);
    display: none;
  }
  
  .mobile-more-menu:not([hidden]) {
    display: block;
  }
  
  .mobile-more-menu .mobile-tab-button {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    text-align: left;
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  /* Mobile Content */
  .mobile-tabs-content-panel {
    background: var(--white);
    padding: var(--spacing-lg);
  }
  
  .mobile-tab-content {
    display: none;
  }
  
  .mobile-tab-content.active {
    display: block;
  }
  
  .mobile-content-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 var(--spacing-sm) 0;
  }
  
  .mobile-content-description {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-md) 0;
  }
  
  .mobile-steps-section {
    margin: var(--spacing-md) 0;
  }
  
  .mobile-steps-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
  }
  
  .mobile-steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .mobile-step-item {
    display: flex;
    gap: var(--spacing-xs);
    align-items: flex-start;
  }
  
  .mobile-step-number {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    flex-shrink: 0;
    min-width: 20px;
  }
  
  .mobile-step-text {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-primary);
    flex: 1;
  }
  
  .mobile-video-section {
    margin: var(--spacing-lg) 0;
    text-align: center;
  }
  
  .mobile-video-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .mobile-play-button {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
  }
  
  .mobile-call-to-action {
    background: #E9F3FF;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: var(--spacing-lg);
  }
  
  .mobile-call-to-action p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    color: var(--text-primary);
  }
}

/* ==========================================================================
   Pricing Plans Section
   ========================================================================== */

.pricing-section {
  padding: 100px 0;
  background: #E9F3FF;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-size: 33.18px;
  line-height: 39px;
  font-weight: 700;
  margin: 0;
}

.pricing-title-black {
  color: var(--text-primary);
}

.pricing-title-blue {
  color: var(--primary-blue);
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 818px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  flex: 1;
  max-width: 400px;
  min-width: 300px;
  height: 498px;
  padding: 33px 20px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.pricing-card-header {
  width: 100%;
  text-align: center;
}

.pricing-card-title {
  margin: 0;
}

.pricing-card-title-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-primary);
}

.pricing-card-title-accent {
  font-size: 23.04px;
  line-height: 25px;
  font-weight: 700;
  color: #3DCEED;
}

.pricing-card-title-accent-standard {
  color: #0097D6;
}

.pricing-title-divider {
  width: 100%;
  height: 1px;
  background: #E4E8F2;
  margin: 16px 0 0 0;
}

.pricing-card-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.feature-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-primary);
}

.feature-info {
  width: 10px;
  height: 10px;
  padding: 5.56px;
  border-radius: 27.78px;
  border: 0.5px solid #3DCEED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.89px;
  font-weight: 500;
  line-height: 11.11px;
  color: #3DCEED;
}

.feature-info-standard {
  border-color: #0097D6;
  color: #0097D6;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: #E4E8F2;
  margin: 18px 0;
}

.pricing-card-price {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-before {
  font-size: 16px;
  font-weight: 700;
  text-decoration: line-through;
  color: #939397;
  line-height: 20px;
}

.price-now {
  font-size: 23.04px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 25px;
}

.price-amount {
  color: #3DCEED;
}

.price-amount-standard {
  color: #0097D6;
}

.pricing-button {
  width: 100%;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-button-basic {
  background: #3DCEED;
  border-color: #3DCEED;
}

.pricing-button-basic:hover {
  background: #2bb8d1;
  border-color: #2bb8d1;
}

.pricing-button-standard {
  background: #0097D6;
  border-color: #0097D6;
}

.pricing-button-standard:hover {
  background: #007bb3;
  border-color: #007bb3;
}

.lifetime-offer {
  width: 100%;
  max-width: 818px;
  min-width: 399px;
  height: 105px;
  padding: 10px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 100px auto;
}

.lifetime-text {
  text-align: center;
  font-size: 23.04px;
  font-weight: 700;
  line-height: 25px;
  color: #1B1E35;
  margin: 0;
}

.lifetime-highlight {
  color: var(--primary-blue);
}

.lifetime-terms {
  font-size: 13.33px;
  font-weight: 400;
  line-height: 22px;
  color: #1B1E35;
}

.guarantee-section {
  background: #E9F3FF;
  border-radius: 15px;
  padding: 0px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 65px;
  height: 78px;
}

.guarantee-shield {
  width: 65px;
  height: 78px;
}

.guarantee-title {
  text-align: center;
  font-size: 27.65px;
  font-weight: 700;
  line-height: 31px;
  margin: 0;
}

.guarantee-title-blue {
  color: var(--primary-blue);
}

.guarantee-title-black {
  color: var(--text-primary);
}

.guarantee-description {
  max-width: 1162px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-primary);
  margin: 0;
}

.guarantee-link {
  width: 15%;
  height: 100%;
  padding: 10px 20px;
  background: #00AAF8;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.guarantee-link:hover {
  background: #0097D6;
}

.guarantee-link-text {
  color: white;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 18px;
  word-wrap: break-word;
}

.guarantee-arrow {
  width: 14px;
  height: 9px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

/* Policy Information Styles */
.policy-info {
  margin-top: 20px;
  padding: 20px;
  background: #E9F3FF;
  border-radius: 15px;
}

.policy-content {
  max-width: 100%;
}

.policy-main-title {
  color: #1B1E35;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 16px 0;
  text-align: center;
}

.policy-intro {
  color: #1B1E35;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 16px 0;
  text-align: center;
}

.policy-divider {
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  margin: 16px 0;
}

.policy-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.policy-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text {
  color: #1B1E35;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  flex: 1;
}

.benefit-text strong {
  color: #00AAF8;
  font-weight: 700;
}

.policy-conclusion {
  color: #1B1E35;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 20px 0 0 0;
  text-align: center;
}

/* ==========================================================================
   Demo Section
   ========================================================================== */

.demo-section {
  padding: 60px 0;
  background: var(--white);
}

.demo-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.demo-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-illustration {
  max-width: 100%;
  height: auto;
}

.demo-text {
  flex: 1;
  padding: 60px 30px;
  background: transparent;
  border-radius: 0 15px 15px 0;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.demo-text::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 0 15px 15px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(8, 168, 246, 0.3) 30%, #08A8F6 70%, #08A8F6 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
  pointer-events: none;
}


.demo-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-title {
  font-size: 33.18px;
  line-height: 39px;
  font-weight: 700;
  margin: 0;
}

.demo-title-black {
  color: var(--text-primary);
}

.demo-title-blue {
  color: var(--primary-blue);
}

.demo-underline {
  width: 29px;
  height: 3px;
  background: var(--primary-blue);
}

.demo-subtitle {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.demo-description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
  height: 62px;
  display: flex;
  align-items: center;
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-check {
  width: 20px;
  height: 20px;
  background-image: url('../assets/images/Check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.demo-feature-text {
  font-size: 16px;
  line-height: 20px;
  color: var(--text-primary);
  margin: 0;
}

.demo-feature-bold {
  font-weight: 700;
}

.demo-feature-normal {
  font-weight: 400;
}

.demo-button {
  padding: 10px 20px;
  background: var(--primary-blue);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-button:hover {
  background: #0088cc;
  transform: translateY(-2px);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

/* Hide dropdown menu by default - only show in mobile */
.testimonials-dropdown-menu {
  display: none;
}

.testimonial-tab-dropdown {
  display: none;
}

/* Mobile tabs dropdown for testimonials */
@media screen and (max-width: 768px) {
  .testimonials-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    position: relative;
  }
  
  .testimonial-tab {
    display: none !important;
  }
  
  .testimonial-tab.hidden-mobile {
    display: none !important;
  }
  
  .testimonial-tab.active {
    display: flex !important;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border: 1px solid #E4E8F2;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    border-radius: 30px;
  }
  
  .testimonial-tab.active span {
    flex: 1;
    text-align: left;
  }
  
  .testimonial-tab-dropdown {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 4px;
    background: rgba(0, 170, 248, 0.1);
    transition: background 0.3s ease;
  }
  
  .testimonial-tab-dropdown:hover {
    background: rgba(0, 170, 248, 0.2);
  }
  
  .testimonial-tab-dropdown .dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
  }
  
  .testimonial-tab-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .testimonials-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #E4E8F2;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
  }
  
  .testimonials-dropdown-menu.show {
    display: block;
  }
  
  .testimonials-dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #F5F5F5;
  }
  
  .testimonials-dropdown-item:last-child {
    border-bottom: none;
  }
  
  .testimonials-dropdown-item:hover {
    background: #F8F8F8;
  }
  
  .testimonials-dropdown-item.active {
    background: #E9F3FF;
    color: #00AAF8;
  }
}

.testimonials-section {
  padding: 60px 0;
  background: #E9F3FF;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title {
  font-size: 33.18px;
  line-height: 39px;
  font-weight: 700;
  margin: 0;
}

.testimonials-title-blue {
  color: var(--primary-blue);
}

.testimonials-title-black {
  color: var(--text-primary);
}

.testimonials-card {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 60px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.testimonials-tabs {
  max-width: 650px;
  padding: 8px;
  background: #E9F3FF;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.testimonial-tab {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0);
  color: #1B1E35;
}

.testimonial-tab.active {
  background: var(--primary-blue);
  color: var(--white);
}

.testimonial-tab:hover:not(.active) {
  background: rgba(0, 170, 248, 0.1);
}

.testimonials-content {
  width: 100%;
  max-width: 1600px;
}

.testimonial-panel {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0;
  min-height: 516px;
}

.testimonial-panel.active {
  display: flex;
}

.testimonial-left {
  flex: 1;
  max-width: 800px;
  min-width: 400px;
  height: 516px;
  padding: 0 16px;
  background: var(--primary-blue);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.testimonial-quote {
  width: 100%;
  max-width: 516px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.testimonial-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  color: var(--white);
  margin: 0;
  height: 96px;
  display: flex;
  align-items: center;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.author-name {
  font-size: 27.65px;
  font-weight: 700;
  line-height: 31px;
  color: var(--white);
  margin: 0;
}

.author-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--white);
  margin: 0;
}

.testimonial-right {
  flex: 1;
  max-width: 800px;
  min-width: 400px;
  height: 516px;
  padding: 0 16px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.testimonial-features-title {
  font-size: 27.65px;
  font-weight: 700;
  line-height: 31px;
  color: var(--text-primary);
  margin: 0;
  width: 100%;
  max-width: 516px;
}

.testimonial-features {
  width: 100%;
  max-width: 516px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Tooltip hover functionality */
.feature-info {
  position: relative;
  cursor: pointer;
}

.feature-info:hover::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  background-color: #f3f4f6;
  color: #374151;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  white-space: pre-line;
  width: 350px;
  max-width: 350px;
  line-height: 1.4;
  z-index: 1000;
  margin-bottom: 10px;
}



.testimonial-feature-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-primary);
}

/* ==========================================================================
   Testimonials Slider
   ========================================================================== */

.testimonials-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1600px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.slider-btn {
  width: 34px;
  height: 34px;
  padding: 10px 13px;
  background: transparent;
  border: 1px solid var(--primary-blue);
  border-radius: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--primary-blue);
}

.slider-btn:hover svg path {
  stroke: var(--white);
}

.slider-btn-prev svg {
  transform: rotate(180deg);
}

.slider-container {
  flex: 1;
  overflow: hidden;
  width: 100%;
  position: relative;
  max-width: 100%;
  min-width: 0;
}

.slider-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
  width: max-content;
}

.testimonial-slide {
  width: 580px;
  min-width: 580px;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.testimonial-slide-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 0;
}

.testimonial-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.testimonial-img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 15px;
}

.testimonial-info {
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px 20px 0;
}

.testimonial-badge {
  padding: 10px 20px;
  background: #E4E8F2;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--primary-blue);
}

.testimonial-name {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-person-name {
  font-size: 23.04px;
  font-weight: 700;
  line-height: 25px;
  color: var(--text-primary);
  margin: 0;
}

.testimonial-person-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--primary-blue);
  margin: 0;
}

.testimonial-quote-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-primary);
  margin: 0;
  height: 71px;
  display: flex;
  align-items: center;
}

.testimonial-video-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--primary-blue);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.testimonial-video-link:hover {
  opacity: 0.8;
}

.testimonial-video-link img {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   Responsive Design - Testimonials Slider
   ========================================================================== */

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .slider-container {
    max-width: 100%;
    overflow: hidden;
  }
  
  .testimonial-slide {
    width: 500px;
    min-width: 500px;
  }
  
  .testimonial-img {
    width: 200px;
    height: 100%;
  }
  
  .testimonial-info {
    width: 280px;
  }
}

/* Específico para resolución 1024x600 - Reducir todos los tamaños */
@media screen and (max-width: 1024px) and (max-height: 600px) {
  /* Hero Section - Reducir tamaños */
  .hero-title {
    font-size: 32px !important;
    line-height: 24px !important;
  }
  
  .hero-subtitle {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  
  .hero-description {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  .hero-image iframe {
    max-width: 350px !important;
    height: 180px !important;
  }
  
  /* Features Section - Reducir tamaños */
  .features-title {
    font-size: 20px !important;
    line-height: 24px !important;
  }
  
  .feature-title {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  
  .feature-description {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  .feature-card {
    width: 160px !important;
    min-height: 150px !important;
    padding: 16px 12px !important;
  }
  
  .feature-icon {
    width: 35px !important;
    height: 35px !important;
  }
  
  /* Tabs Section - Reducir tamaños */
  .tabs-title .title-blue,
  .tabs-title .title-black {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  
  .content-title {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  
  .content-description {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  /* Content text - Centrar y ajustar */
  .content-text {
    width: 100% !important;
    max-width: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 10px !important;
  }
  
  .tab-button span {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  /* Tabs Navigation - Mantener tamaño inicial */
  .tabs-nav {
    width: 256px !important;
    gap: 6px;
    max-height: 320px;
    min-height: 377px !important;
  }
  
  .tab-button {
    padding: 10px 14px !important;
    margin-bottom: 8px !important;
  }
  
  /* Tabs Content Panel - Reducir tamaños */
  .tabs-content-panel {
    height: 377px;
    min-height: 280px !important;
    width: 730px !important;
  }
  
  .content-wrapper {
    gap: 15px !important;
  }
  
  .content-image {
    max-width: 300px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
  }
  .guarantee-link {
    width: 15%;
  }
  .content-image video {
    width: 300px !important;
    height: 169px !important;
  }
  
  .content-image img {
    width: 300px !important;
    height: 169px !important;
  }
  
  /* Features list dentro de tabs */
  .features-list {
    gap: 6px !important;
  }
  
  .feature-item {
    gap: 6px !important;
  }
  
  .feature-check {
    width: 10px !important;
    height: 10px !important;
  }
  
  .feature-no {
    width: 6px !important;
    height: 6px !important;
  }
  
  .feature-text {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  /* Audit highlight */
  .audit-text {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  
  /* Exogena steps */
  .exogena-highlight-text {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  
  .exogena-step-number {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  
  .exogena-step-text {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  /* Formato highlight */
  .formato-text {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  
  /* Support Section - Reducir tamaños */
  .support-section {
    padding: 30px 0 !important;
  }
  
  .support-title .support-title-blue,
  .support-title .support-title-black {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  
  .support-subtitle {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  .support-card {
    width: 280px !important;
    height: auto !important;
    min-height: 200px !important;
    padding: 20px !important;
  }
  
  .support-card-title {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  
  .support-card-description {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  .support-card-image img {
    width: 250px !important;
    height: 200px !important;
  }
  
  /* Pricing Section - Reducir tamaños */
  .pricing-section {
    padding: 30px 0 !important;
  }
  
  .pricing-title .pricing-title-black,
  .pricing-title .pricing-title-blue {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  
  .pricing-plan-card {
    width: 280px !important;
    padding: 20px !important;
  }
  
  .pricing-plan-title {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  
  .pricing-plan-desc {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  .pricing-amount {
    font-size: 1.4rem !important;
  }
  
  .pricing-feature-text {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  /* Demo Section - Reducir tamaños */
  .demo-section {
    padding: 30px 0 !important;
  }
  
  .demo-title .demo-title-black,
  .demo-title .demo-title-blue {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  
  .demo-subtitle {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  
  .demo-description {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  .demo-feature-text {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  /* Testimonials Section - Reducir tamaños */
  .testimonials-section {
    padding: 30px 0 !important;
  }
  
  .testimonials-title .testimonials-title-blue,
  .testimonials-title .testimonials-title-black {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  
  .testimonial-text {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  
  .author-name {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  
  .author-title {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  /* Testimonial panels - Reducir tamaños */
  .testimonial-left {
    width: 45% !important;
    padding: 15px !important;
  }
  
  .testimonial-right {
    width: 45% !important;
    padding: 15px !important;
  }
  
  .testimonial-features-title {
    font-size: 20px !important;
    line-height: 18px !important;
  }
  
  .testimonial-feature-text {
    font-size: 15px !important;
    line-height: 15px !important;
  }
  
  .testimonial-check {
    width: 12px !important;
    height: 12px !important;
  }
  
  /* Form Section - Reducir tamaños */
  .form-section {
    padding: 30px 0 !important;
  }
  
  .form-title {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  
  /* FAQ Section - Reducir tamaños */
  .faq-section {
    padding: 30px 0 !important;
  }
  
  .faq-title {
    font-size: 20px !important;
    line-height: 24px !important;
  }
  
  .faq-question span {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  .faq-answer p {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  /* Guarantee Section - Reducir tamaños */
  .guarantee-title .guarantee-title-blue,
  .guarantee-title .guarantee-title-black {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  
  .guarantee-description {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  .lifetime-text {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  /* Guarantee Link - Reducir tamaños */
  .guarantee-link {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
  
  .guarantee-link-text {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  .guarantee-arrow {
    width: 12px !important;
    height: 12px !important;
  }
  
  /* Policy Info - Reducir tamaños */
  .policy-info {
    padding: 15px !important;
    margin-top: 15px !important;
  }
  
  .policy-main-title {
    font-size: 16px !important;
    line-height: 20px !important;
    margin-bottom: 10px !important;
  }
  
  .policy-intro {
    font-size: 12px !important;
    line-height: 16px !important;
    margin-bottom: 10px !important;
  }
  
  .policy-benefit {
    margin-bottom: 8px !important;
    padding: 8px !important;
  }
  
  .benefit-text {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  
  .benefit-icon {
    width: 12px !important;
    height: 12px !important;
  }
  
  .policy-conclusion {
    font-size: 12px !important;
    line-height: 16px !important;
    margin-top: 10px !important;
  }
}

/* ==========================================================================
   Responsive Design - Pricing Section
   ========================================================================== */

@media screen and (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }
  
  .pricing-header {
    margin-bottom: 40px;
  }
  
  .pricing-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .pricing-cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .pricing-card {
    max-width: 100%;
    min-width: 400px;
    height: auto;
    padding: 30px 20px;
  }
  
  .lifetime-offer {
    max-width: 100%;
    min-width: auto;
    height: auto;
    padding: 20px;
    margin-bottom: 60px;
  }
  
  .lifetime-text {
    font-size: 18px;
    line-height: 22px;
  }
  
  .guarantee-section {
    padding: 0px 16px;
    gap: 20px;
  }
  
  .guarantee-title {
    font-size: 20px;
    line-height: 24px;
  }
  
  .guarantee-description {
    font-size: 14px;
    line-height: 18px;
  }

  /* Mobile Guarantee Link */
  .guarantee-link {
    width: 100%;
    max-width: 280px;
    height: auto;
    padding: 12px 24px;
    background: #00AAF8;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
  }

  .guarantee-link-text {
    color: white;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 16px;
    word-wrap: break-word;
  }

  .guarantee-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
  }

  /* Policy Info Mobile */
  .policy-info {
    margin-top: 15px;
    padding: 15px;
  }

  .policy-main-title {
    font-size: 20px;
    line-height: 24px;
  }

  .policy-intro {
    font-size: 14px;
    line-height: 18px;
  }

  .benefit-text {
    font-size: 14px;
    line-height: 18px;
  }

  .policy-conclusion {
    font-size: 14px;
    line-height: 18px;
  }
  
  /* Demo Section Mobile */
  .demo-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .demo-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    width: 100%;
  }
  
  .demo-illustration {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  
  .demo-text {
    padding: 20px;
    order: 2;
  }
  
  .demo-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .demo-subtitle {
    font-size: 16px;
    line-height: 20px;
  }
  
  .demo-description {
    height: auto;
    font-size: 14px;
    line-height: 18px;
  }
  
  .demo-feature-text {
    font-size: 14px;
    line-height: 18px;
  }
  
  .demo-button {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  /* Testimonials Section Mobile */
  .testimonials-section {
    padding: 40px 0;
  }
  
  .testimonials-header {
    margin-bottom: 40px;
  }
  
  .testimonials-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .testimonials-card {
    padding: 40px 20px;
    gap: 0px;
  }
  
  .testimonials-tabs {
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    padding: 12px;
  }
  
  .testimonial-tab {
    width: 100%;
    text-align: center;
  }
  
  .testimonial-panel {
    flex-direction: column;
    gap: 20px;
  }
  
  .testimonial-left,
  .testimonial-right {
    max-width: 100%;
    min-width: auto;
    height: auto;
    padding: 20px;
  }
  
  .testimonial-text {
    height: auto;
    font-size: 16px;
    line-height: 20px;
  }
  
  .author-name {
    font-size: 20px;
    line-height: 24px;
  }
  
  .testimonial-features-title {
    font-size: 20px;
    line-height: 24px;
  }
  
  .testimonial-feature-text {
    font-size: 14px;
    line-height: 18px;
  }
  
  /* Testimonials Slider Mobile */
  .testimonials-slider {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
  }
  
  .slider-container {
    width: 100%;
    max-width: 385px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
  }
  
  .slider-track {
    display: flex;
    transition: transform 0.3s ease;
    width: fit-content;
    gap: 16px;
    max-width: none;
  }
  
  .slider-btn {
    display: none;
  }
  
  /* Puntos de navegación para mobile */
  .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E4E8F2;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    outline: none;
  }
  
  .slider-dot.active {
    background-color: #00AAF8;
  }
  
  .slider-dot:hover {
    background-color: #00AAF8;
    opacity: 0.7;
  }
  
  .testimonial-slide {
    width: 320px;
    min-width: 385px;
    height: 360px;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
    padding: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-slide-content {
    flex-direction: column;
    gap: 12px;
    padding: 38px;
    width: 100%;
    height: 378px;
    justify-content: center;
    align-items: flex-start;
  }
  
  .testimonial-image {
    width: 100px;
    height: 100px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  
  .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 78.50px;
    object-fit: cover;
  }
  
  .testimonial-info {
    width: 100%;
    padding: 12px 0;
    gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .testimonial-badge {
    padding: 10px 20px;
    background: #E4E8F2;
    border-radius: 50px;
    font-size: 13.33px;
    font-weight: 400;
    line-height: 16px;
    color: #00AAF8;
  }
  
  .testimonial-person-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: black;
  }
  
  .testimonial-person-title {
    font-size: 13.33px;
    font-weight: 400;
    line-height: 16px;
    color: #00AAF8;
  }
  
  .testimonial-quote-text {
    height: 46px;
    font-size: 13.33px;
    font-weight: 400;
    line-height: 16px;
    color: black;
    align-self: stretch;
  }
  
  .testimonial-video-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #00AAF8;
    gap: 4px;
  }
}

/* Ocultar puntos en desktop y tablet */
@media screen and (min-width: 769px) {
  .slider-dots {
    display: none;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  width: 100%;
  height: 100%;
  padding: 100px 0;
  background: white;
  border-top: 1px solid #C8C8C8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
  display: flex;
}

.faq-title {
  width: 100%;
  max-width: 1900px;
  height: 31px;
  text-align: center;
  color: black;
  font-size: 27.65px;
  font-weight: 700;
  line-height: 31px;
  word-wrap: break-word;
}

.faq-container {
  width: 100%;
  max-width: 1600px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  display: flex;
}

.faq-row {
  width: 100%;
  max-width: 1600px;
  justify-content: flex-start;
  align-items: center;
  gap: 158px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.faq-item {
  flex: 1 1 0;
  max-width: 730px;
  min-width: 400px;
  padding: 0 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35px;
  display: flex;
}

.faq-question {
  align-self: stretch;
  padding: 30px 0;
  overflow: hidden;
  border-bottom: 1px solid #E6E6E6;
  justify-content: space-between;
  align-items: center;
  display: flex;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 170, 248, 0.05);
}

.faq-question span {
  flex: 1 1 0;
  color: black;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  word-wrap: break-word;
}

.faq-icon-wrapper {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-answer.active {
  max-height: 200px;
  padding: 20px 15px 0 15px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-text);
  margin: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
    gap: 40px;
  }
  
  .faq-title {
    width: 100%;
    font-size: 24px;
    line-height: 28px;
    padding: 0 16px;
  }
  
  .faq-container {
    gap: 20px;
    padding: 0 16px;
  }
  
  .faq-row {
    flex-direction: column;
    gap: 0;
  }
  
  .faq-item {
    width: 100%;
    max-width: none;
    min-width: auto;
    padding: 0;
    gap: 20px;
  }
  
  .faq-question {
    padding: 20px 0;
  }
  
  .faq-question span {
    font-size: 15px;
    line-height: 18px;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
  }
  
  .faq-answer p {
    font-size: 15px;
    line-height: 22px;
  }
}

/* ==========================================================================
   High Contrast Mode Support
   ========================================================================== */

@media (prefers-contrast: high) {
  :root {
    --primary-blue: #0066cc;
    --secondary-blue: #003366;
    --gray-border: #666666;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - ORGANIZED BY BREAKPOINTS
   ========================================================================== */

/* DUPLICATED - REMOVED */

/* 1200px - Smaller laptops */
@media screen and (max-width: 1200px) and (min-width: 1025px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-section .container,
  .features-section .container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 45px;
  }
  
  .hero-text {
    min-width: 260px;
    max-width: 400px;
    padding-left: 30px;
  }
  
  .hero-main {
    max-width: 400px;
  }
  
  .hero-image {
    min-width: 300px;
    max-width: 500px;
    padding-right: 30px;
  }
  
  .hero-image iframe {
    max-width: 500px;
    height: 300px;
  }
  
  .features-grid {
    gap: 16px;
  }
  
  .feature-card {
    width: 180px;
    padding: 18px 14px;
    min-height: 160px;
  }
  
  .feature-title {
    font-size: 15px;
  }
  
  .feature-description {
    font-size: 13px;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .tab-button {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .tabs-nav {
    gap: 6px;
  }
  
  .pricing-plan-card {
    padding: 20px 16px;
  }
  
  .pricing-amount {
    font-size: 1.4rem;
  }
  
  .demo-title {
    font-size: 26px;
    line-height: 30px;
  }
}

/* ==========================================================================
   TABLET LANDSCAPE (1024px)
   ========================================================================== */

/* 1024px - Tablet landscape and small laptops */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-section .container,
  .features-section .container {
    padding: 0 20px;
  }
  
  .hero-content {
    justify-content: space-between;
    gap: 15px;
  }
  
  .hero-text {
    min-width: 320px;
    max-width: 420px;
    flex: 1;
    padding-left: 30px;
  }
  
  .hero-main {
    max-width: 420px;
    padding-left: 0;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    line-height: 22px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 22px;
  }
  
  .hero-image {
    min-width: 320px;
    max-width: 450px;
    flex: 1;
    padding-right: 30px;
  }
  
  .hero-image img {
    max-width: 450px;
  }
  
  .hero-image iframe {
    max-width: 450px;
    height: 280px;
    border-radius: 20px;
  }
  
  .features-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .features-grid {
    gap: 15px;
  }
  
  .feature-card {
    width: 170px;
    height: auto;
    min-height: 170px;
    padding: 20px 14px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-title {
    font-size: 14px;
    line-height: 16px;
    min-height: 16px;
  }
  
  .feature-description {
    font-size: 12px;
    line-height: 16px;
    height: auto;
  }
  
  .features-tabs-section {
    padding: 40px 0;
  }
  
  .tabs-content {
    gap: 25px;
  }
  
  .tabs-title {
    font-size: 22px;
    line-height: 26px;
  }
  
  .tabs-container {
    gap: 12px;
    max-height: 380px;
  }
  
  .tabs-nav {
    width: 250px;
    padding: 12px;
    gap: 4px;
  }
  
  .tab-button {
    padding: 5px 8px;
    font-size: 10px;
    line-height: 12px;
  }
  
  .pricing-amount {
    font-size: 1.5rem;
  }
  
  .pricing-plan-title {
    font-size: 1.2rem;
  }
  
  .slider-container {
    max-width: 100%;
    overflow: hidden;
  }
  
  .testimonial-slide {
    width: 500px;
    min-width: 500px;
  }
  
  .testimonial-img {
    width: 200px;
    height: 100%;
  }
  
  .testimonial-info {
    width: 280px;
  }
}

/* 1024px specific - Force changes for better layout */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .hero-content {
    gap: 10px !important;
    justify-content: space-between !important;
  }
  
  .hero-text {
    min-width: 350px !important;
    max-width: 450px !important;
    padding-left: 74px !important;
    margin-left: 0 !important;
  }
  
  .hero-main {
    padding-left: 0 !important;
  }
  
  .hero-image {
    min-width: 350px !important;
    max-width: 500px !important;
    padding-right: 30px !important;
  }
  
  .hero-image iframe {
    max-width: 500px !important;
    height: 300px !important;
  }
  
  /* Fix tabs section layout */
  .features-tabs-section {
    padding: 50px 0 !important;
  }
  
  .tabs-title {
    margin-bottom: 30px !important;
  }
  
  .tabs-container {
    gap: 15px !important;
    max-height: 320px !important;
    margin-top: 20px !important;
  }
  
  .tabs-nav {
    width: 250px !important;
    padding: 15px !important;
    gap: 6px !important;
  }
  
  .tab-button {
    padding: 8px 12px !important;
    font-size: 12px !important;
    line-height: 14px !important;
  }
  
  .tabs-content-panel {
    padding: 20px !important;
  }
  
  /* Fix support cards section */
  .support-cards {
    gap: 30px !important;
    justify-content: center !important;
  }
  
  .support-card {
    flex: 1 !important;
    max-width: 300px !important;
  }
  
  .support-card-image {
    width: 100% !important;
    max-width: 250px !important;
    height: auto !important;
  }
  
  .support-card-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 250px !important;
    max-height: 200px !important;
    object-fit: cover !important;
  }
  
  .support-card-content {
    padding: 15px !important;
  }
  
  .support-card-title {
    font-size: 16px !important;
    line-height: 20px !important;
    margin-bottom: 10px !important;
  }
  
  .support-card-description {
    font-size: 14px !important;
    line-height: 18px !important;
  }
}

/* 1024x600 - Very small height screens */
@media screen and (max-width: 1024px) and (max-height: 600px) {
  .hero-title {
    font-size: 32px !important;
    line-height: 24px !important;
  }
  
  .hero-subtitle {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  
  .hero-description {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  
  .hero-image iframe {
    max-width: 350px !important;
    height: 180px !important;
  }
  
  .features-title {
    font-size: 20px !important;
    line-height: 24px !important;
  }
  
  .feature-title {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  
  .feature-description {
    font-size: 11px !important;
    line-height: 14px !important;
  }
}

/* ==========================================================================
   TABLET PORTRAIT (768px)
   ========================================================================== */

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 100px 0px 40px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .hero-text {
    min-width: auto;
    width: 100%;
    order: 2;
    padding-left: 0px !important;
  }
  
  .hero-main {
    max-width: none;
    align-items: center;
  }
  
  .hero-image {
    min-width: auto;
    width: 100%;
    order: 1;
    padding-right: 0;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }
  
  .hero-image iframe {
    max-width: 100%;
    height: 200px;
    min-height: 180px;
    border-radius: 20px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-description {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: var(--spacing-lg);
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
    margin: 0 auto;
    display: block;
  }
  
  .features-section {
    padding: 40px 0;
  }
  
  .features-content {
    gap: 30px;
  }
  
  .features-title {
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
  }
  
  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .features-slider {
    display: none;
  }
  
  .feature-card {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: auto;
    padding: 20px;
    gap: 16px;
  }
  
  .feature-icon {
    width: 50px !important;
    height: 50px !important;
  }
  
  .feature-title {
    font-size: 16px;
    line-height: 20px;
    min-height: auto;
  }
  
  .feature-description {
    font-size: 14px;
    line-height: 18px;
    height: auto;
  }
  
  .features-tabs-section {
    display: none;
  }
  
  .mobile-tabs-section {
    display: block;
  }
  
  .pricing-amount {
    font-size: 1.4rem;
  }
  
  .pricing-plan-title {
    font-size: 1.1rem;
  }
  
  .pricing-section {
    padding: 60px 0;
  }
  
  .pricing-cards-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .pricing-plan-card {
    width: 100%;
    max-width: 350px;
  }
  
  .testimonials-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .testimonial-tab {
    width: 100%;
    text-align: center;
  }
  
  .testimonials-dropdown-menu {
    display: none;
  }
  
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-container {
    gap: 15px;
  }
  
  .faq-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .faq-item {
    width: 100%;
  }
}

/* ==========================================================================
   MOBILE (480px)
   ========================================================================== */

@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    line-height: 18px;
  }
  
  .hero-description {
    font-size: 13px;
    line-height: 16px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .features-title {
    font-size: 20px;
    line-height: 24px;
  }
  
  .feature-card {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-title {
    font-size: 14px;
    line-height: 18px;
  }
  
  .feature-description {
    font-size: 12px;
    line-height: 16px;
  }
  
  .pricing-amount {
    font-size: 1.3rem;
  }
  
  .pricing-plan-title {
    font-size: 1rem;
  }
  
  .pricing-plan-card {
    padding: 30px 20px;
  }
  
  .demo-title {
    font-size: 20px;
    line-height: 24px;
  }
  
  .demo-description {
    font-size: 14px;
    line-height: 18px;
  }
  
  .demo-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ContaPyme Highlight Styles */
.contapyme-highlight {
  margin: 0;
  padding: 0;
}

.contapyme-text {
  color: black;
  font-size: 26px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.mobile-contapyme-highlight {
  margin: 0;
  padding: 0;
}

.mobile-contapyme-text {
  color: black;
  font-size: 26px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  padding: 0;
}