/* ==========================================================================
   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
   ========================================================================== */

.separator {
  width: 100%;
  height: 1px;
  background-color: var(--gray-border);
  margin: 40px 0;
}

.hero-section {
  background-color: var(--primary-blue);
  padding: 30px 0px 50px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  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;
}


/* Responsiuve texto arriba y formulario abajo */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column !important;
    gap: 40px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-text {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-form {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 20px !important;
  }

  .hero-title,
  .hero-subtitle,
  .hero-tagline {
    text-align: center !important;
  }

  .hero-main {
    padding: 0;
  }
}

/* ==========================================================================
   Promo Section (Transformación Contable)
   ========================================================================== */

.promo-section {
  width: 100%;
  padding: 40px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.promo-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.promo-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.highlight-primary {
  color: var(--primary-blue);
}

.promo-media {
  width: 100%;
  display: flex;
  justify-content: center;
}

.promo-video {
  width: 100%;
  max-width: 760px;
  height: 428px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.promo-cta {
  display: flex;
  justify-content: center;
}

.promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background-color: var(--secondary-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.promo-button:hover {
  background-color: #003d85;
}

@media screen and (max-width: 1024px) {
  .promo-title {
    font-size: 20px;
  }

  .promo-subtitle {
    font-size: 18px;
  }

  .promo-video {
    max-width: 600px;
    height: 337px;
  }
}

@media screen and (max-width: 768px) {
  .promo-video {
    max-width: 100%;
    height: 220px;
  }
}

/* Right column: Form card (replaces video when used) */
.hero-form {
  flex: 1;
  min-width: 450px;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-card {
  width: 100%;
  max-width: 620px;
  max-height: 510px;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
}

.form-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.form-title-highlight {
  color: var(--primary-blue);
}

.form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  font-size: 15px;
  line-height: 22px;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 170, 248, 0.15);
}

/* ==========================================================================
   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);
  background: transparent;
  padding: 0;
}

.breadcrumb-separator {
  color: var(--white);
}

.breadcrumb-item.current {
  font-weight: 600;
}

/* ==========================================================================
   Typography Styles
   ========================================================================== */

.hero-title {
  font-size: 41px;
  font-weight: 700;
  line-height: 42px;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.accent-blue {
  color: #003782;
}

.text-azul-principal {
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  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);
}

.hero-tagline {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--white);
}

/* ==========================================================================
   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;
    max-width: 100%;
    width: 100%;
  }

  .hero-text {
    min-width: 300px;
    max-width: 500px;
  }

  .hero-image {
    min-width: 300px;
    max-width: 550px;
  }

  .hero-image iframe {
    max-width: 550px;
    height: 320px;
  }

  /* 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 {
    padding: 30px;
    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;
    align-items: stretch;
  }

  .tabs-nav {
    width: 280px;
    padding: 15px;
    gap: 8px;
    min-height: 450px;
    height: 100%;
  }

  .tab-button {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 15px;
  }

  .tabs-content-panel {
    padding: 35px 25px;
    min-height: 450px;
    height: 100%;
  }

  .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;
  }

  .hero-main {
    max-width: 520px;
    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 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: wrap;
  /* permite que los cards bajen */
  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
   ========================================================================== */

/* Tablets (≤ 970px) */
@media (max-width: 970px) {
  .feature-card {
    flex: 1 1 calc(50% - 40px);
    max-width: 200px;
  }
}

/* Móviles (≤ 600px)  */
@media (max-width: 600px) {
  .feature-card {
    flex: 1 1 100%;
    width: 100%;
  }

  .features-title {
    font-size: 24px;
    line-height: 30px;
    max-width: 90%;
  }

  .feature-description {
    font-size: 14px;
    line-height: 18px;
  }

  .promo-media iframe {
    width: 100%;
    height: 220px;
  }
}

/* ==========================================================================
   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;
    align-items: stretch;
  }

  .tabs-nav {
    width: 250px;
    padding: 12px;
    gap: 4px;
    min-height: 380px;
    height: 100%;
  }

  .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;
    height: 100%;
    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: stretch;
  gap: 21px;
  width: 100%;
}

/* ==========================================================================
   Tabs Navigation
   ========================================================================== */

.tabs-nav {
  width: 100%;
  max-width: 303px;
  min-height: -webkit-fill-available;
  height: 100%;
  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, 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: 465px;
  height: 100%;
  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;
  flex-direction: column;
}

.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: flex;
  gap: 20px !important;
  justify-content: center !important;
  align-items: stretch !important;
  overflow: visible !important;
  max-width: 800px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !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: 1px solid #e4e8f2 !important;
  border-left: 4px solid var(--accent) !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  min-height: 600px !important;
  display: flex !important;
  flex-direction: column !important;

  flex: 1 1 0 !important;
  max-width: none !important;
  min-width: 300px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.pricing-plan-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

/* ---------- Header de la card ---------- */
.pricing-card-header {
  text-align: center !important;
  margin-bottom: 20px !important;
}

.pricing-plan-card .pricing-plan-badge {
  display: inline-block !important;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 12px !important;
}

.pricing-plan-desc {
  font-size: 14px !important;
  color: #718096 !important;
  margin-bottom: 15px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  text-align: center !important;
}

.pricing-plan-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

/* ---------- Divider superior ---------- */
.pricing-divider-top {
  width: 100%;
  height: 1px;
  background: #e4e8f2;
  margin: 20px 0;
}

/* ---------- Precio ---------- */
.pricing-price-section {
  text-align: center !important;
  margin-bottom: 30px !important;
}

.pricing-price-before {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.price-before-label {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #718096 !important;
}

.price-before-amount {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #718096 !important;
  text-decoration: line-through !important;
}

.pricing-price-now {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  margin-bottom: 8px !important;
}

.pricing-amount {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  line-height: 1 !important;
}

.price-now-label {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #000 !important;
}

.pricing-period {
  font-size: 16px !important;
  color: var(--accent) !important;
  font-weight: 400 !important;
}

/* ---------- Features ---------- */
.pricing-features {
  margin-bottom: 30px !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;
  justify-content: flex-start !important;
  padding: 10px 0 !important;
  gap: 12px !important;
}

.pricing-feature-icon {
  width: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.pricing-plan-card .pricing-feature-included {
  background: transparent !important;
  border: none !important;
  color: var(--accent) !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.pricing-feature-text {
  color: #000 !important;
  line-height: 1.5 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  flex: 1 !important;
}

/* ---------- CTA ---------- */
.pricing-cta-section {
  text-align: center !important;
  margin-top: auto !important;
}

.pricing-cta-button {
  width: 100% !important;
  padding: 14px 24px !important;
  border: none !important;
  border-radius: 50px !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.pricing-cta-button:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* ---------- Mapeo de colores por tipo de plan ---------- */
.contable-basico {
  --accent: #3dceed;
  --accent-hover: #2bb8d6;
}

.contable-estandar {
  --accent: #0097d6;
  --accent-hover: #0078a8;
}

/* DUPLICATED - REMOVED */

@media (max-width: 1024px) {
  .pricing-amount {
    font-size: 28px !important;
  }

  .pricing-plan-title {
    font-size: 22px !important;
  }

  .pricing-cards-grid {
    max-width: 900px !important;
  }
}

@media (max-width: 992px) {
  .pricing-cards-grid {
    flex-direction: column !important;
    gap: 24px !important;
    max-width: 100% !important;
  }

  .pricing-plan-card {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .lifetime-offer {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .pricing-cards-grid {
    flex-direction: column !important;
    gap: 24px !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .pricing-plan-card {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: auto !important;
    padding: 24px 20px !important;
  }

  .pricing-amount {
    font-size: 28px !important;
  }

  .pricing-plan-title {
    font-size: 20px !important;
  }

  .price-before-label,
  .price-before-amount {
    font-size: 14px !important;
  }

  .price-now-label {
    font-size: 16px !important;
  }

  .pricing-period {
    font-size: 14px !important;
  }

  .lifetime-offer {
    max-width: 100% !important;
    padding: 24px 16px !important;
  }
}

@media (max-width: 480px) {
  .pricing-cards-grid {
    flex-direction: column !important;
    gap: 20px !important;
    max-width: 100% !important;
    padding: 16px 0 24px 0 !important;
  }

  .pricing-plan-card {
    padding: 20px 16px !important;
    min-width: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    flex: 1 1 100% !important;
    min-height: auto !important;
  }

  .pricing-amount {
    font-size: 24px !important;
  }

  .pricing-plan-title {
    font-size: 18px !important;
  }

  .pricing-feature-text {
    font-size: 14px !important;
  }

  .price-before-label,
  .price-before-amount {
    font-size: 13px !important;
  }

  .price-now-label {
    font-size: 15px !important;
  }

  .pricing-period {
    font-size: 13px !important;
  }

  .pricing-cta-button {
    font-size: 14px !important;
    padding: 12px 20px !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;
  flex-wrap: nowrap;
}

.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, 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, 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.5px;
    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, 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;
  width: 100%;
}

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

.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: 600;
  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;
  margin-bottom: 18px !important;
}

.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;
  text-decoration: none;
}

.pricing-button:hover {
  text-decoration: none;
}

/* Mantener estilos originales tras click/visited/focus/active */
.pricing-button:link,
.pricing-button:visited {
  text-decoration: none;
}

.pricing-button-basic:visited,
.pricing-button-basic:focus,
.pricing-button-basic:active {
  background: #3dceed;
  border-color: #3dceed;
  color: #fff;
  text-decoration: none;
  outline: none;
}

.pricing-button-standard:visited,
.pricing-button-standard:focus,
.pricing-button-standard:active {
  background: #0097d6;
  border-color: #0097d6;
  color: #fff;
  text-decoration: none;
  outline: none;
}

.pricing-button-basic {
  background: #3dceed;
  border-color: #3dceed;
}

.pricing-button-basic:hover {
  background: transparent;
  border-color: #3dceed;
  color: #3dceed;
}

.pricing-button-standard {
  background: #0097d6;
  border-color: #0097d6;
}

.pricing-button-standard:hover {
  background: transparent;
  border-color: #0097d6;
  color: #0097d6;
}

.lifetime-offer {
  width: 100%;
  max-width: 800px;
  min-width: 300px;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 100px auto;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.lifetime-text {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

.lifetime-highlight {
  color: var(--primary-blue);
}

.lifetime-terms {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #718096;
  margin-top: 8px;
}

.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 {
  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;
}

.policy-intro {
  color: #1b1e35;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 16px 0;
}

.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;
}

/* ==========================================================================
   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: none;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  max-width: 1188px;
  /* 2 slides of 580px + 28px gap */
  position: relative;
  margin: 0 auto;
}

.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;
    height: 100% !important;
  }

  .tab-button {
    padding: 10px 14px !important;
    margin-bottom: 8px !important;
  }

  /* Tabs Content Panel - Reducir tamaños */
  .tabs-content-panel {
    height: 377px !important;
    min-height: 377px !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-grid {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .pricing-plan-card {
    max-width: 100% !important;
    min-width: auto !important;
    width: 100% !important;
    flex: 1 1 100% !important;
    padding: 24px 20px !important;
  }

  .pricing-amount {
    font-size: 28px !important;
  }

  .pricing-plan-title {
    font-size: 20px !important;
  }

  .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: 385px;
    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.5px;
    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;
  display: flex;
}

.faq-row {
  width: 100%;
  max-width: 1600px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 90px;
}

.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;
  display: flex;
  gap: 0 !important;
}

.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;
}

@media screen and (max-width: 889px) {
  .faq-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* 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;
    align-items: center;
    gap: 15px;
  }

  .faq-item {
    width: 100%;
    max-width: none;
    min-width: auto;
    padding: 0;
  }

  .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;
    align-items: stretch;
  }

  .tabs-nav {
    width: 250px;
    padding: 12px;
    gap: 4px;
    min-height: 380px;
    height: 100%;
  }

  .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;
    height: 800px !important;
  }

  .tabs-title {
    margin-bottom: 30px !important;
  }

  .tabs-container {
    gap: 15px !important;
    max-height: 320px !important;
    margin-top: 20px !important;
    align-items: stretch !important;
  }

  .tabs-nav {
    width: 250px !important;
    padding: 15px !important;
    gap: 6px !important;
    min-height: 320px !important;
    height: 100% !important;
  }

  .tab-button {
    padding: 8px 12px !important;
    font-size: 12px !important;
    line-height: 14px !important;
  }

  .tabs-content-panel {
    padding: 20px !important;
    min-height: 320px !important;
    height: 100% !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) {
  .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 {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
    padding: 16px 0 24px 0 !important;
  }

  .pricing-plan-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    padding: 20px 16px !important;
  }

  .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: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.mobile-contapyme-highlight {
  margin: 0;
  padding: 0;
}

.mobile-contapyme-text {
  color: black;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Informes completos - nuevos estilos */
.content-lead {
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0 10px;
}

.content-extra {
  margin-top: 12px;
  color: #222;
  font-weight: 600;
}

.content-image .content-media-box {
  width: 100%;
  max-width: 533px;
  height: 299px;
  border-radius: 12px;
  background: #e9eef7;
  border: 1px solid #d6dee9;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.content-ideal-pill {
  margin: 22px auto 0;
  padding: 12px 18px;
  text-align: center;
  border: 1px solid #00a0ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6fbff 0%, #eef6ff 100%);
  color: #222;
  max-width: 1080px;
  width: 100%;
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-image .content-media-box {
    height: 220px;
    max-width: 100%;
  }

  .content-ideal-pill {
    margin-top: 16px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}

/* Pago por bancos - logos */
.bank-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.bank-logo {
  width: 92px;
  min-height: 72px;
  border: 1px solid #d6dee9;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
}

.bank-logo-name {
  margin-top: 6px;
  font-size: 12px;
  color: #5b6b7b;
  text-align: center;
}

.bank-logo-img {
  max-width: 64px;
  max-height: 32px;
}

@media (max-width: 768px) {
  .bank-logo {
    width: 84px;
    min-height: 68px;
  }
}

/* Fix: Responsive overflow for form-card and mobile-content-image at <=425px */
@media screen and (max-width: 425px) {
  .hero-form {
    min-width: 0;
    max-width: 100%;
  }

  .form-card {
    max-width: 100%;
    height: auto;
    max-height: none;
    box-sizing: border-box;
    padding: 20px 16px;
  }

  .mobile-content-image {
    min-width: 0;
    width: 100%;
    height: 200px;
  }

  .mobile-content-image iframe,
  .mobile-content-image img,
  .mobile-content-image video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
  }
}

@media (max-width: 320px) {
  body {
    width: 336px;
  }
}

/* ==========================================================================
   Topbar / Navigation Bar
   ========================================================================== */

.topbar {
  width: 100%;
  background: var(--primary-blue);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.topbar__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.topbar img {
  height: 48px;
  width: auto;
}

/* Menu dentro del topbar */
.topbar .navbar__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar .navbar__item {
  margin: 0;
}

.topbar .navbar__link {
  display: inline-block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.topbar .navbar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.topbar .navbar__link--cta {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 5px 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.topbar .navbar__link--cta:hover {
  background: #fff;
  color: var(--primary-blue);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

/* Toggle button para móvil */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.navbar__toggle-icon {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Compensación de la barra fija ya aplicada en la definición principal de body */

/* Responsive: Menú móvil */
@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .topbar .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .topbar .navbar__menu[aria-expanded="true"] {
    max-height: 500px;
    opacity: 1;
    pointer-events: all;
  }

  .topbar .navbar__item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .topbar .navbar__item:last-child {
    border-bottom: none;
  }

  .topbar .navbar__link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 0;
    color: #000;
  }

  .topbar .navbar__link:hover {
    color: #004ea6;
    background: rgba(0, 78, 166, 0.08);
  }

  .topbar .navbar__link--cta {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    margin-top: 8px;
  }

  .topbar .navbar__link--cta:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
  }

  /* Animación del icono hamburguesa */
  .navbar__toggle[aria-expanded="true"] .navbar__toggle-icon:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .navbar__toggle[aria-expanded="true"] .navbar__toggle-icon:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle[aria-expanded="true"] .navbar__toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media (max-width: 480px) {
  .topbar__container {
    padding: 0 16px;
  }

  .topbar .navbar__link {
    font-size: 14px;
    padding: 12px 14px;
  }
}

/*------------------- PROMO CONGELADOS --------------------*/
/* FREEZE SCREEN */

#freeze-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle,
      rgba(200, 240, 255, .6),
      rgba(174, 211, 250, .9));
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

#freeze-screen.active {
  opacity: 1;
  pointer-events: all;
  animation: freezeIn 1.2s ease-out forwards;
}

@keyframes freezeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* COPOS INDIVIDUALES */

#freeze-screen .snowflake {
  position: absolute;
  background: url("../assets/images/CopoN.svg") no-repeat center / contain;
  pointer-events: none;
  animation: snowFloat 7s ease-in-out infinite;
}

#freeze-screen .snow-1 {
  top: 10%;
  left: 6%;
  width: 140px;
  height: 140px;
}

#freeze-screen .snow-2 {
  top: 14%;
  right: 8%;
  width: 180px;
  height: 180px;
  animation-duration: 9s;
}

#freeze-screen .snow-3 {
  bottom: 12%;
  left: 10%;
  width: 120px;
  height: 120px;
  animation-duration: 8s;
}

#freeze-screen .snow-4 {
  bottom: 10%;
  right: 12%;
  width: 160px;
  height: 160px;
  animation-duration: 10s;
}

#freeze-screen .snow-5 {
  right: 20%;
  width: 100px;
  height: 100px;
  animation-duration: 10s;
}

#freeze-screen .snow-6 {
  left: 10%;
  width: 100px;
  height: 100px;
  animation-duration: 10s;
}

@keyframes snowFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(6deg);
  }
}

/* TEXTO CONGELADO CENTRAL */

.freeze-message h1 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 35px rgba(180, 230, 255, .9));
  animation: textBounce 1.2s ease-out forwards;
}

.freeze-message .line-1 {
  display: block;
  font-size: 11.7rem;
  font-weight: 400;
  color: #3579f6;
}

.freeze-message .line-2 {
  display: block;
  font-size: 6.5rem;
  font-weight: 800;
  transform: translateY(-50px);
  color: #ffffff;
}

.freeze-message .line-3 {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 34px;
  font-size: 3.5rem;
  font-weight: 500;
  text-transform: none;
  color: #3579f6;
  background: rgba(220, 240, 255, .95);
  border-radius: 50px;
  box-shadow:
    0 10px 25px rgba(53, 121, 246, .25),
    inset 0 0 12px rgba(255, 255, 255, .6);
  transform: translateY(-80px);
}

/*-------- Responsive Texto y Copos -----------*/

@media (max-width: 1600px) {

  .freeze-message .line-1 {
    font-size: 9.5rem;
  }

  .freeze-message .line-2 {
    font-size: 5.4rem;
  }

  .freeze-message .line-3 {
    font-size: 3rem;
    padding: 12px 30px;
  }

  .snow-1 {
    width: 120px;
    height: 120px;
  }

  .snow-2 {
    width: 150px;
    height: 150px;
  }

  .snow-3 {
    width: 100px;
    height: 100px;
  }

  .snow-4 {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 1400px) {

  .freeze-message .line-1 {
    font-size: 8rem;
  }

  .freeze-message .line-2 {
    font-size: 4.8rem;
    margin-top: 20px;
  }

  .freeze-message .line-3 {
    font-size: 2.6rem;
    padding: 10px 26px;
  }

  .snow-1,
  .snow-2,
  .snow-3,
  .snow-4 {
    opacity: .8;
  }
}

@media (max-width: 1200px) {

  .freeze-message .line-1 {
    font-size: 6.8rem;
  }

  .freeze-message .line-2 {
    font-size: 4rem;
  }

  .freeze-message .line-3 {
    font-size: 2.2rem;
  }

  .snow-2,
  .snow-4 {
    display: none;
  }
}

@media (max-width: 992px) {

  .freeze-message .line-1 {
    font-size: 5.4rem;
  }

  .freeze-message .line-2 {
    font-size: 3.2rem;
    margin-top: 0;
  }

  .freeze-message .line-3 {
    font-size: 1.9rem;
    padding: 8px 22px;
  }

  .snowflake {
    opacity: .5;
  }
}

@media (max-width: 768px) {

  .freeze-message .line-1 {
    font-size: 3.6rem;
  }

  .freeze-message .line-2 {
    font-size: 2.4rem;
    transform: translateY(-25px);
  }

  .freeze-message .line-3 {
    font-size: 1.4rem;
    padding: 6px 18px;
    transform: translateY(-60px);
  }

  .snowflake {
    width: 70px !important;
    height: 70px !important;
    opacity: .35;
  }
}


/*---------------------------------------------*/

@keyframes textBounce {
  0% {
    transform: scale(.6);
    opacity: 0;
  }

  70% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

/* UNFREEZE */

#freeze-screen.unfreeze {
  animation: unfreeze 1.2s ease-in forwards;
}

@keyframes unfreeze {
  to {
    opacity: 0;
    backdrop-filter: blur(0);
  }
}

/* LOGO FLOAT CONGELADOS */

#congelados-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 250px;
  height: 250px;
  z-index: 9999;
  opacity: 0;
  transform: scale(.4);
  transition: all .9s ease;
}

#congelados-float.show {
  opacity: 1;
  transform: scale(1);
}

#congelados-float img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Halo de hielo */
.ice-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(180, 230, 255, .6),
      transparent 70%);
  opacity: 0;
  filter: blur(10px);
  transition: opacity .5s ease;
  z-index: 1;
}

#congelados-float:hover .ice-glow {
  opacity: 1;
}

/* HINT CLICK AQUÍ */

.hint {
  position: absolute;
  top: -55px;
  right: 65px;
  text-align: center;
  animation: hintFloat 1.6s ease-in-out infinite;
}

.hint span {
  font-size: 30px;
  font-weight: 600;
  color: #3579f6;
  letter-spacing: 1px;
}

.arrow {
  width: 2px;
  height: 55px;
  margin: 8px auto 0;
  background: linear-gradient(to bottom,
      rgba(200, 240, 255, .9),
      rgba(200, 240, 255, .1));
}

@keyframes hintFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Hover: ocultar hint */
#congelados-float:hover .hint {
  opacity: 0;
  transform: translateY(18px);
  transition: all .4s ease;
}

/*--------------------- Responsive logo --------------------------*/
@media (max-width: 1720px) {
  #congelados-float {
    width: 200px;
    height: 200px;
  }

  .hint {
    top: -50px;
    right: 45px;
  }

  .hint span {
    font-size: 28px;
  }

  .arrow {
    height: 48px;
  }
}

@media (max-width: 1400px) {
  #congelados-float {
    width: 190px;
    height: 190px;
  }

  .hint {
    top: -40px;
    right: 55px;
  }

  .hint span {
    font-size: 20px;
  }

  .arrow {
    height: 42px;
  }
}

@media (max-width: 1200px) {
  #congelados-float {
    width: 170px;
    height: 170px;
  }

  .hint {
    top: -40px;
    right: 45px;
  }

  .hint span {
    font-size: 20px;
  }

  .arrow {
    height: 36px;
  }
}

@media (max-width: 992px) {
  #congelados-float {
    width: 150px;
    height: 150px;
  }

  .hint {
    top: -50px;
    right: 40px;
  }

  .hint span {
    font-size: 17px;
  }

  .arrow {
    height: 30px;
  }
}

@media (max-width: 768px) {
  #congelados-float {
    width: 150px;
    height: 150px;
    bottom: 15px;
    right: 15px;
  }

  .hint {
    top: -40px;
    right: 40px;
  }

  .hint span {
    font-size: 16px;
  }

  .arrow {
    height: 24px;
  }
}