/* ========================================
   CSS Custom Properties (Variables CSS)
   ⚠️ Landing Page - Solo Tema Claro
   ======================================== */

:root {
    /* Forzar solo tema claro en la landing page */
    color-scheme: light;

    /* Colores del logo - Tema claro */
    --brand-primary: #667eea;       /* Azul púrpura del logo */
    --brand-secondary: #764ba2;     /* Púrpura del logo */
    --brand-accent: #f093fb;        /* Rosa del logo */

    /* Colores de ilustración - Tema claro */
    --illustration-bg-primary: #ffffff;
    --illustration-bg-secondary: #f2f2f2;
    --illustration-border: #090814;
    --illustration-accent: #667eea;          /* Color primario del logo */
    --illustration-accent-alt: #764ba2;      /* Color secundario del logo */
    --illustration-highlight: #f093fb;       /* Color rosa del logo */
    --illustration-text: #090814;
    --illustration-muted: #e6e6f2;           /* Tono claro derivado de brand-primary */
    --illustration-neutral: #d6d6e3;
    --illustration-skin: #ffc1c7;
    --illustration-skin-dark: #ed9da0;
    --illustration-dark: #3f3d56;
    --illustration-shadow: rgba(102, 126, 234, 0.15);
}

/* ========================================
   Navbar Component Styles
   ======================================== */

.navbar-section {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.navbar-section.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-width: fit-content;
}

/* Estilos para el logo SVG mejorado */
.logo-svg {
    height: auto;
    max-width: 200px;
    width: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.logo-svg:hover {
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
    transform: translateY(-2px);
}

/* Estilo antiguo del logo de texto (deprecated, se mantiene por compatibilidad) */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    white-space: nowrap;
}

.logo span {
    color: #f093fb;
    background: none;
    -webkit-text-fill-color: #f093fb;
}

.navbar-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
    min-width: fit-content;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar-demo-btn {
    min-width: 100px !important;
}

.language-selector {
    display: flex;
    gap: 5px;
    border-left: 1px solid #e0e0e0;
    padding-left: 12px;
    align-items: center;
}

/* ========================================
   Global Button Styles (Solo Landing Page)
   ⚠️ NO usar en src/RutaTurismo360.Web/
   ======================================== */

/* Botón con gradiente primario - Landing Page */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

/* Botón outline - Landing Page */
.btn-outline {
    background: transparent !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    background: #667eea !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Tamaños de botones - Landing Page */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
}

.btn-md {
    padding: 10px 20px;
    font-size: 0.875rem;
    min-width: 120px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
    min-width: 160px;
}

/* ========================================
   Global Badge Styles (Solo Landing Page)
   ⚠️ NO usar en src/RutaTurismo360.Web/
   ======================================== */

/* Badge con gradiente - Landing Page */
.badge-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Badge outline - Landing Page */
.badge-outline {
    background: white !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Badge small */
.badge-sm {
    padding: 4px 12px;
    font-size: 0.75rem;
}

/* Badge large */
.badge-lg {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 35px;
}

.lang-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.lang-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* ========================================
   Hero Section - Modern Split Screen
   ======================================== */

.hero-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f0f2f5 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    animation: slideInLeft 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0 !important;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem !important;
    color: #666 !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-trust {
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.trust-icon {
    color: #667eea;
    font-size: 1.2rem;
}

.trust-text {
    color: #666;
    font-weight: 500;
}

.hero-visual {
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

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

.hero-image-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.hero-visual svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-stats {
    margin-top: 80px;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.stat-value {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0 !important;
    line-height: 1.2 !important;
}

.stat-label {
    color: #666;
    font-weight: 600;
    font-size: 0.875rem !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-visual {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }

    .hero-stats {
        margin-top: 60px;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-value {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
    }
}

/* ========================================
   Responsive - Tablet (768px)
   ======================================== */

@media (max-width: 768px) {
    .navbar-section .container {
        padding: 12px 0;
        flex-wrap: wrap;
        gap: 12px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-brand {
        order: 1;
        width: 100%;
    }

    .logo-svg {
        max-width: 160px;
    }

    .navbar-menu {
        flex-basis: 100%;
        gap: 16px;
        order: 3;
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
        margin-top: 8px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .navbar-actions {
        order: 2;
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .language-selector {
        padding-left: 10px;
        gap: 4px;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 0.65rem;
        min-width: 32px;
    }

    .navbar-demo-btn {
        min-width: 80px !important;
    }
}

/* ========================================
   Responsive - Mobile (480px)
   ======================================== */

@media (max-width: 480px) {
    .navbar-section .container {
        padding: 10px 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo-svg {
        max-width: 140px;
    }

    .navbar-menu {
        flex-basis: 100%;
        gap: 12px;
        order: 3;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
        margin-top: 8px;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .navbar-actions {
        order: 2;
        width: 100%;
        gap: 8px;
    }

    .language-selector {
        padding-left: 8px;
        gap: 3px;
    }

    .lang-btn {
        padding: 4px 6px;
        font-size: 0.6rem;
        min-width: 28px;
    }

    .navbar-demo-btn {
        min-width: 70px !important;
    }
}

.rt360-topBanner-section {
  padding: 0 4rem;
}

.rt360-topBanner-container {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

/* Row principal */
.rt360-topBanner-content {
  gap: 2rem;
  align-items: center;
}

/* Texto */
.rt360-topBanner-text {
  /*padding-right: 1rem;*/
}

.rt360-page-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.05;
}

.rt360-page-subtitle {
  margin-bottom: 1rem;
  color: var(--rz-text-secondary,#6b7280);
}

/* Botones */
.rt360-topBanner-buttons {
  margin: 1rem 0;
}

/* Estadísticas: 4 columnas MD+ */
.rt360-topBanner-stats {
  margin-top: 0.85rem;
  width: 100%;
}

.rt360-stat-card {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--rt360-surface);
  border: 1px solid var(--rt360-border);
  border-radius: 10px;
  min-height: 8rem;
}

.rt360-stat-value {
  font-weight: 700;
  font-size: 1.125rem;
}

.rt360-stat-label {
  color: var(--rz-text-secondary,#6b7280);
  font-size: 0.9rem;
}

/* Visual (derecha) */
.rt360-topBanner-visual-card {
  min-height: 320px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rt360-accent-start), var(--rt360-accent-end));
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.08);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Imagen / ilustración */
.rt360-topBanner-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

  .rt360-topBanner-image svg {
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
    border-radius: 10px;
    background: transparent;
  }

    .rt360-topBanner-image svg .rt360-bg {
      fill: var(--rt360-surface);
      opacity: 0.98;
    }

    .rt360-topBanner-image svg .rt360-muted {
      opacity: 0.95;
    }

/* Botón agente */
.rt360-topBanner-agent-btn {
  margin-top: 1rem;
  min-width: 140px;
}

/* Animaciones (respeta prefers-reduced-motion) */
@media (prefers-reduced-motion: reduce) {
  .rt360-float, .rt360-float-slow {
    animation: none !important;
    transform: none !important;
  }
}

@keyframes rt360-float {
  0% {
    transform: translateY(0px);
  }

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

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

.rt360-float {
  animation: rt360-float 4s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.rt360-float-slow {
  animation-duration: 6s;
}

/* Desktop adjustments */
@media (min-width: 992px) {
  .rt360-topBanner-content {
    gap: 2.5rem;
  }

  .rt360-topBanner-text {
    /*padding-right: 1.75rem;*/
  }

  .rt360-page-title {
    font-size: 2.4rem;
  }

  .rt360-page-subtitle {
    font-size: 1.125rem;
  }

  .rt360-topBanner-visual-card {
    min-height: 440px;
    padding: 1.5rem;
  }

  .rt360-topBanner-image svg {
    max-width: 560px;
  }
}
/* ========================================
   Features Section Styles
   ======================================== */

.features-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-section .section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem !important;
}

.features-section .section-subtitle {
    font-size: 1.125rem !important;
    color: #666 !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid - Compatible con Radzen RadzenRow */
.features-grid {
    margin-top: 50px;
}

.feature-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15) !important;
    transform: translateY(-8px);
    border-color: #667eea !important;
}

.feature-icon {
    width: 20px;
    height: 20px;
    /*margin: 0 auto 25px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.feature-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: #333 !important;
}

.feature-text {
    color: #666 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ========================================
   Pricing Section Styles
   ======================================== */

.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    position: relative;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-section .section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem !important;
}

.pricing-section .section-subtitle {
    font-size: 1.125rem !important;
    color: #666 !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid - Compatible con Radzen RadzenRow */
.pricing-grid {
    margin-top: 50px;
}

.pricing-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 12px !important;
    border: 2px solid #f0f0f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid #667eea !important;
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15) !important;
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15) !important;
    transform: translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.pricing-name {
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    margin: 25px 0 20px !important;
    color: #333 !important;
}

.pricing-price {
    font-size: 3rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 !important;
}

.pricing-period {
    color: #999 !important;
    font-size: 0.95rem !important;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.pricing-features li::before {
    content: '✓';
    color: #4caf50;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ========================================
   Testimonials Section Styles
   ======================================== */

.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem !important;
}

.testimonials-section .section-subtitle {
    font-size: 1.125rem !important;
    color: #666 !important;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    margin-top: 50px;
}

.testimonial {
    background: white !important;
    padding: 25px 20px !important;
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15) !important;
    transform: translateY(-5px);
    border-color: #667eea !important;
}

.stars {
    color: #ffc107 !important;
    font-size: 1rem !important;
    margin: 0 !important;
}

.testimonial-text {
    font-size: 0.9rem !important;
    color: #666 !important;
    font-style: italic !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    flex: 1;
}

.testimonial-author {
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
}

.testimonial-role {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin: 0 !important;
}

/* ========================================
   CTA Section Styles - Enhanced Modern Design
   ======================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Patrón de fondo decorativo */
.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.cta-content {
    position: relative;
}

/* Texto del CTA */
.cta-text {
    animation: fadeInLeft 0.8s ease-out;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.cta-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: white !important;
    margin: 0 !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.25rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Botones del CTA */
.cta-buttons {
    margin-top: 1rem;
}

.btn-cta-primary {
    background: white !important;
    color: #667eea !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    min-width: 200px !important;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
    background: #f8f9fa !important;
}

.btn-cta-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease !important;
    min-width: 200px !important;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
    border-color: white !important;
}

/* Indicadores de confianza */
.cta-trust {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-icon {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.trust-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

/* Visual/Estadísticas */
.cta-visual {
    animation: fadeInRight 0.8s ease-out 0.3s both;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-stats-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 320px;
    transition: all 0.3s ease;
}

.cta-stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.stats-container {
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 0;
}

.stat-value {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin: 0 !important;
    line-height: 1 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    height: 1px;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    width: 80%;
    margin: 0 auto;
}

/* Animaciones específicas del CTA */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive CTA Section */
@media (max-width: 991px) {
    .cta-title {
        font-size: 2.5rem !important;
    }

    .cta-subtitle {
        font-size: 1.125rem !important;
    }

    .cta-visual {
        margin-top: 2rem;
    }

    .cta-stats-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2rem !important;
    }

    .cta-subtitle {
        font-size: 1rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        min-width: auto !important;
    }

    .cta-trust {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .stat-value {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
    }

    .cta-stats-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.75rem !important;
    }

    .cta-subtitle {
        font-size: 0.95rem !important;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }

    .stat-value {
        font-size: 1.75rem !important;
    }

    .cta-stats-card {
        padding: 1.5rem 1rem;
    }
}

/* ========================================
   Footer Section Styles - Enhanced Modern Design
   ======================================== */

.footer-section {
    background: linear-gradient(135deg, #1a1d29 0%, #0f1419 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(102, 126, 234, 0.5) 50%, 
        transparent 100%
    );
}

/* Footer Main Content */
.footer-main {
    margin-bottom: 3rem;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-weight: 800 !important;
    color: white !important;
    margin: 0 !important;
    font-size: 1.75rem !important;
}

.footer-logo .logo-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    font-style: italic !important;
    margin: 0 !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.footer-section-title {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem !important;
}

/* Social Links */
.footer-social {
    margin-top: 0.5rem;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.footer-social .social-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.footer-social .social-link:hover .social-icon {
    color: white;
}

/* Footer Columns */
.footer-column {
    height: 100%;
}

.footer-column-title {
    color: white !important;
    font-weight: 700 !important;
    margin: 0 0 0.5rem 0 !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    font-size: 0.9rem !important;
    position: relative;
}

.footer-link:hover {
    color: #667eea !important;
    transform: translateX(5px);
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #667eea;
}

.footer-link:hover::before {
    left: -15px;
    opacity: 1;
}

/* Contact Items */
.footer-contact {
    margin-top: 0.5rem;
}

.contact-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon-small {
    color: #667eea;
    font-size: 1rem;
}

.contact-label {
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600 !important;
    margin: 0 !important;
}

.contact-value {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%
    );
    margin: 2rem 0;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
}

.footer-bottom-links {
    display: flex;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
    transition: all 0.3s ease !important;
}

.footer-bottom-link:hover {
    color: #667eea !important;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-main {
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 25px;
    }

    .footer-main {
        margin-bottom: 2rem;
    }

    .footer-logo {
        font-size: 1.5rem !important;
    }

    .footer-column {
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem !important;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

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

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-logo {
        font-size: 1.35rem !important;
    }

    .footer-description {
        font-size: 0.85rem !important;
    }

    .footer-social .social-link {
        width: 36px;
        height: 36px;
    }

    .footer-social .social-icon {
        font-size: 1.1rem;
    }

    .footer-column-title {
        font-size: 0.9rem !important;
    }

    .footer-link {
        font-size: 0.85rem !important;
    }

    .contact-value {
        font-size: 0.8rem !important;
    }

    .footer-copyright,
    .footer-bottom-link {
        font-size: 0.8rem !important;
    }
}

/* ========================================
   Pricing Section - Enhanced Styles
   ======================================== */

.billing-toggle {
    margin: 2rem 0;
}

.billing-text {
    color: #999;
    font-weight: 500;
    transition: color 0.3s ease;
}

.billing-text-active {
    color: #667eea;
    font-weight: 600;
}

.pricing-users {
    color: #667eea;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    text-align: center;
}

.features-list {
    min-height: 250px;
}

.feature-icon {
    color: #667eea;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.setup-fee {
    color: #999;
    text-align: center;
    font-style: italic;
}

.pricing-btn {
    margin-top: auto;
}

.pricing-billed {
    color: #999;
    text-align: center;
}

/* ========================================
   Contact Section Styles
   ======================================== */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
}

.contact-content {
    margin-top: 3rem;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.contact-form-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.contact-icon {
    color: #667eea;
    font-size: 1.5rem;
    min-width: 24px;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.social-icon {
    color: #667eea;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #764ba2;
    transform: scale(1.2);
}

/* ========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .navbar-menu {
        gap: 30px;
    }

    .rt360-topBanner-section .container {
        gap: 40px;
    }

    .features-section {
        padding: 70px 0;
    }

    .features-section .section-header {
        margin-bottom: 45px;
    }

/* ========================================
   About Section Styles
   ======================================== */

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
}

.about-section .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.about-section .section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem !important;
}

.about-section .section-subtitle {
    font-size: 1.125rem !important;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Container */
.mission-container {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mission-content {
    padding: 2.5rem !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(102, 126, 234, 0.08) !important;
}

.mission-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1a202c;
    line-height: 1.3;
    margin: 0;
}

.mission-description {
    font-size: 1.0625rem !important;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* Mission Mini Cards */
.mission-cards {
    margin-top: 2rem;
}

.mini-card {
    padding: 1.75rem !important;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(102, 126, 234, 0.12) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mini-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.08) !important;
    transform: translateY(-4px);
}

.mini-card:hover::before {
    transform: scaleY(1);
}

.mini-card-icon {
    font-size: 2.25rem;
    line-height: 1;
}

.mini-card-title {
    font-weight: 700 !important;
    color: #1a202c;
    margin: 0;
    font-size: 1.125rem !important;
}

.mini-card-text {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem !important;
}

/* Mission Illustration */
.mission-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    position: relative;
    padding: 2rem;
}

/* Estilos legacy para compatibilidad con imagen SVG antigua */
.illustration-placeholder {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(102, 126, 234, 0.15);
    overflow: hidden;
}

.illustration-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.illustration-icon {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    position: relative;
    z-index: 1;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.2));
}

.illustration-icon .stars-group {
    animation: twinkle 3s ease-in-out infinite;
}

.illustration-icon .floating-icons {
    animation: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Floating Elements - Simplificados */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 5s ease-in-out infinite;
}

.float-element.element-1 {
    top: 15%;
    left: 12%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-element.element-3 {
    bottom: 25%;
    left: 18%;
    animation-delay: 3s;
}

.float-element.element-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 0.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.05);
    }
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
}

/* Values Container */
.values-container {
    position: relative;
    z-index: 1;
    padding-top: 1.5rem !important;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.values-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1a202c;
    margin: 0 0 0.75rem 0 !important;
}

.values-subtitle {
    font-size: 1.0625rem !important;
    color: #718096;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    margin-top: 40px;
}

/* Value Cards */
.value-card {
    height: 100%;
    padding: 2rem !important;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gradient-color) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
    --gradient-color: #667eea;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
    --gradient-color: #f093fb;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
    --gradient-color: #4facfe;
}

.value-card:nth-child(4) {
    animation-delay: 0.4s;
    --gradient-color: #43e97b;
}

.value-card:hover {
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.12);
    transform: translateY(-6px);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.value-card:hover .value-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.value-icon.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value-icon.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.value-icon.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.value-icon.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.value-title {
    font-weight: 700 !important;
    color: #1a202c;
    margin: 0 0 0.75rem 0 !important;
    font-size: 1.125rem !important;
}

.value-text {
    color: #4a5568;
    line-height: 1.75;
    margin: 0;
    font-size: 0.875rem !important;
}

/* About CTA */
.about-cta {
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Note: Using global .btn-gradient .btn-lg classes */

/* Responsive - About Section */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section .section-title {
        font-size: 2.25rem !important;
    }

    .mission-content {
        padding: 2rem;
    }

    .mission-title {
        font-size: 1.75rem !important;
    }

    .mission-description {
        font-size: 1rem !important;
    }

    .illustration-placeholder {
        height: 400px;
        max-width: 400px;
    }

    .illustration-icon {
        font-size: 8rem;
    }

    .values-title {
        font-size: 1.875rem !important;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section .section-header {
        margin-bottom: 50px;
    }

    .about-section .section-title {
        font-size: 1.875rem !important;
    }

    .mission-container {
        margin-bottom: 60px;
    }

    .mission-content {
        padding: 1.75rem;
    }

    .mission-title {
        font-size: 1.5rem !important;
    }

    .mission-description {
        font-size: 0.9375rem !important;
    }

    .mission-illustration {
        min-height: 350px;
        margin-top: 2rem;
    }

    .illustration-placeholder {
        height: 350px;
        max-width: 350px;
    }

    .illustration-icon {
        font-size: 6rem;
    }

    .float-element {
        font-size: 1.75rem;
    }

    .values-container {
        margin-top: 60px;
    }

    .values-header {
        margin-bottom: 40px;
    }

    .values-title {
        font-size: 1.5rem !important;
    }

    .values-subtitle {
        font-size: 0.9375rem !important;
    }

    .value-card {
        padding: 1.75rem !important;
    }

    .value-icon {
        width: 65px;
        height: 65px;
        font-size: 1.875rem;
    }

    .about-cta {
        margin-top: 50px;
    }

    /* Button responsive handled by global .btn-gradient .btn-lg */
}

/* Accessibility - Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .about-section *,
    .value-card,
    .mini-card,
    .float-element,
    .illustration-icon {
        animation: none !important;
        transition: none !important;
    }

    .value-card:hover,
    .mini-card:hover {
        transform: none !important;
    }
}

    .feature-card {
        padding: 35px 25px !important;
    }

    .pricing-section {
        padding: 70px 0;
    }

    .pricing-section .section-header {
        margin-bottom: 45px;
    }

    .pricing-card {
        padding: 35px 25px !important;
    }

    .pricing-card.featured {
        transform: translateY(0);
    }

    .testimonials-section {
        padding: 70px 0;
    }

    .testimonials-section .section-header {
        margin-bottom: 45px;
    }

    .testimonial {
        padding: 22px 20px !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        justify-content: flex-start;
    }

    .navbar-actions {
        width: 100%;
        justify-content: space-between;
    }

    .rt360-topBanner-section {
        padding: 60px 0;
    }

      .rt360-topBanner-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

  .rt360-topBanner-title {
    font-size: 2rem;
  }

  .rt360-topBanner-subtitle {
    font-size: 1rem;
  }

  .rt360-topBanner-buttons {
    flex-direction: column;
  }

  .rt360-topBanner-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

    .features-section {
        padding: 60px 0;
    }

    .features-section .section-title {
        font-size: 2rem !important;
    }

    .features-section .section-subtitle {
        font-size: 1rem !important;
    }

    .features-section .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 20px !important;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        /*margin: 0 auto 20px;*/
    }

    .feature-icon img {
        width: 45px;
        height: 45px;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-section .section-title {
        font-size: 2rem !important;
    }

    .pricing-section .section-subtitle {
        font-size: 1rem !important;
    }

    .pricing-section .section-header {
        margin-bottom: 40px;
    }

    .pricing-card {
        padding: 30px 20px !important;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-name {
        font-size: 1.25rem !important;
        margin: 20px 0 15px !important;
    }

    .pricing-price {
        font-size: 2.5rem !important;
    }

    .billing-toggle {
        margin: 1.5rem 0;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .section-title {
        font-size: 2rem !important;
    }

    .testimonials-section .section-subtitle {
        font-size: 1rem !important;
    }

    .testimonials-section .section-header {
        margin-bottom: 40px;
    }

    .testimonial {
        padding: 20px 18px !important;
    }

    .stars {
        font-size: 0.95rem !important;
    }

    .testimonial-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .testimonial-author {
        font-size: 0.85rem !important;
    }

    .testimonial-role {
        font-size: 0.75rem !important;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .language-selector {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .navbar-menu {
        display: none;
    }

    .rt360-topBanner-title {
        font-size: 1.5rem;
    }

    .rt360-topBanner-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-section {
        padding: 40px 0;
    }

    .features-section .section-title {
        font-size: 1.5rem !important;
    }

    .features-section .section-subtitle {
        font-size: 0.95rem !important;
        padding: 0 1rem;
    }

    .features-section .section-header {
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 25px 20px !important;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        /*margin: 0 auto 15px;*/
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 1.125rem !important;
    }

    .feature-text {
        font-size: 0.875rem !important;
    }

    .pricing-price {
        font-size: 2rem !important;
    }

    .pricing-section {
        padding: 40px 0;
    }

    .pricing-section .section-title {
        font-size: 1.5rem !important;
    }

    .pricing-section .section-subtitle {
        font-size: 0.95rem !important;
        padding: 0 1rem;
    }

    .pricing-section .section-header {
        margin-bottom: 30px;
    }

    .pricing-card {
        padding: 25px 20px !important;
    }

    .pricing-name {
        font-size: 1.125rem !important;
        margin: 15px 0 10px !important;
    }

    .pricing-price {
        font-size: 2rem !important;
    }

    .pricing-period {
        font-size: 0.875rem !important;
    }

    .pricing-users {
        font-size: 0.875rem !important;
        padding: 0.375rem 0.75rem;
    }

    .features-list {
        min-height: auto;
    }

    .billing-toggle {
        margin: 1rem 0;
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section .section-title {
        font-size: 1.5rem !important;
    }

    .testimonials-section .section-subtitle {
        font-size: 0.95rem !important;
        padding: 0 1rem;
    }

    .testimonials-section .section-header {
        margin-bottom: 30px;
    }

    .testimonial {
        padding: 18px 16px !important;
    }

    .stars {
        font-size: 0.9rem !important;
    }

    .testimonial-text {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .testimonial-author {
        font-size: 0.8rem !important;
    }

    .testimonial-role {
        font-size: 0.7rem !important;
    }
}

/* ========================================
   PRICING PAGE — /pricing standalone
   ======================================== */

/* Header */
.pricing-page-header {
    background: white;
    border-bottom: 1px solid #e8ecef;
    padding: 0.875rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.pricing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pricing-logo {
    height: auto;
    max-width: 180px;
    width: 100%;
    transition: all 0.25s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.pricing-logo:hover {
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.25));
    transform: translateY(-1px);
}

/* Hero */
.pricing-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(240, 147, 251, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Billing toggle */
.billing-active {
    color: #667eea !important;
    font-weight: 700 !important;
}

/* Plan Cards */
.pricing-plan-card {
    background: white;
    border-radius: 18px;
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.pricing-plan-card:hover {
    box-shadow: 0 14px 36px rgba(102, 126, 234, 0.18);
    transform: translateY(-5px);
    border-color: #667eea;
}

.pricing-plan-card.popular {
    border: 2.5px solid #667eea;
    box-shadow: 0 8px 28px rgba(102, 126, 234, 0.22);
    background: linear-gradient(175deg, rgba(102, 126, 234, 0.04) 0%, white 25%);
}

.pricing-plan-card.popular:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(102, 126, 234, 0.3);
}

.popular-badge {
    position: absolute !important;
    top: -14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    white-space: nowrap !important;
    z-index: 2 !important;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4) !important;
}

.plan-name {
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.plan-description {
    color: #888;
    text-align: center;
}

.price-amount {
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1 !important;
}

.price-period {
    color: #999;
    align-self: flex-end;
    margin-bottom: 0.3rem;
}

.section-label {
    color: #999 !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    font-weight: 700 !important;
}

/* CTA Section */
.pricing-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07) 0%, transparent 40%);
    pointer-events: none;
}

.pricing-cta-btn {
    background: white !important;
    color: #667eea !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    padding: 0.9rem 2.5rem !important;
    font-size: 1.05rem !important;
    min-width: 280px !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18) !important;
    transition: all 0.25s ease !important;
    position: relative;
    z-index: 1;
}

.pricing-cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
    background: #f5f0ff !important;
}

/* ========================================
   rt360-* utilities para LandingPageWeb
   (compatibilidad con Web app)
   ======================================== */

.rt360-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rt360-loading-section {
    padding: 3.5rem 1rem;
    text-align: center;
}

.rt360-empty-section {
    padding: 3.5rem 1rem;
    text-align: center;
}

.rt360-form-divider {
    height: 1px;
    background-color: #eef0f4;
    margin: 0.25rem 0;
    width: 100%;
    flex-shrink: 0;
}

.rt360-helper-text {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
}

.rt360-form-button {
    min-width: 140px;
    font-weight: 600 !important;
}

.rt360-section-title {
    font-weight: 700;
    color: var(--rz-text-color, #444);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--rz-primary, #9c27b0);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

/* Responsive pricing */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 3rem 0 2.5rem;
    }

    .pricing-cta {
        padding: 3.5rem 1rem;
    }

    .pricing-plan-card:hover,
    .pricing-plan-card.popular:hover {
        transform: none;
    }

    .pricing-header-inner {
        padding: 0 1rem;
    }

    .pricing-logo {
        max-width: 140px;
    }

    .rt360-form-container {
        padding: 0 1rem;
    }

    .pricing-cta-btn {
        min-width: 220px !important;
        font-size: 0.95rem !important;
    }
}

/* ========================================
   Register Page
   ======================================== */

.register-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 0 1.5rem 3rem;
    align-items: start;
}

.register-sidebar {
    position: sticky;
    top: 80px;
}

.register-plan-card {
    border-top: 3px solid var(--rz-primary);
}

.register-form-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Step Indicator */
.register-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
}

.register-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.register-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid #d0d5dd;
    background: white;
    color: #98a2b3;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.register-step-dot.reg-current {
    border-color: var(--rz-primary);
    background: var(--rz-primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.register-step-dot.reg-completed {
    border-color: var(--rz-success);
    background: var(--rz-success);
    color: white;
}

.register-step-label {
    color: #667085;
    font-size: 0.72rem;
    white-space: nowrap;
    text-align: center;
}

.register-step-connector {
    flex: 1;
    height: 2px;
    background: #d0d5dd;
    min-width: 50px;
    margin: 0 0.4rem;
    margin-bottom: 1.4rem;
    transition: background 0.3s ease;
}

.register-step-connector.reg-active {
    background: var(--rz-success);
}

.register-success-icon {
    font-size: 5rem;
    line-height: 1;
    animation: reg-pop 0.4s ease;
}

@keyframes reg-pop {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
    .register-layout {
        grid-template-columns: 1fr;
    }

    .register-sidebar {
        position: static;
    }
}

@media (max-width: 576px) {
    .register-layout {
        padding: 0 1rem 2rem;
        margin: 1.5rem auto;
    }

    .register-step-connector {
        min-width: 30px;
    }
}

/* =============================================================================
   CLASES RT360 COMPARTIDAS — form-template
   Migradas desde global-form-template.css y global-cards-template.css del Web
   para que los componentes de formulario funcionen igual en la landing.
   ============================================================================= */

/* Campos de formulario */
.rt360-field-full {
    width: 100%;
}

/* Campo obligatorio: agrega asterisco (*) al label */
.rt360-field-required > label::after,
.rt360-field-required .rz-form-field-label::after {
    content: " *";
    color: var(--rz-danger, #f44336);
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Icono de sección (dentro de rt360-section-title) */
.rt360-section-icon {
    vertical-align: middle;
}

/* Validador de campo */
.rt360-validator {
    display: block;
    color: var(--rz-danger, #f44336);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Icono estado vacío */
.rt360-empty-icon {
    font-size: 3rem;
    color: var(--rz-text-disabled-color, #bdbdbd);
}

/* Leyenda de campos requeridos */
.rt360-required-legend {
    color: var(--rz-text-secondary-color, #757575);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
.rt360-required-legend::before {
    content: "* ";
    color: var(--rz-danger, #f44336);
    font-weight: 600;
}

/* Cards de solo lectura (resumen) */
.rt360-readonly-card {
    background-color: var(--rz-base-100, #f9fafb);
}
.rt360-readonly-label {
    font-size: 0.78rem;
    color: var(--rz-text-secondary-color, #757575);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.rt360-readonly-value {
    font-weight: 500;
    color: var(--rz-text-color, #212121);
}

/* Cards de switches */
.rt360-switch-card {
    background-color: var(--rz-base-100, #f9fafb);
}
.rt360-switch-label {
    font-weight: 500;
    margin: 0;
}
.rt360-switch-helper {
    color: var(--rz-text-secondary-color, #757575);
    font-size: 0.8rem;
    margin: 0;
}

/* Botones de acción */
.rt360-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}
.rt360-btn-secondary {
    background: white !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
}

/* ========================================
   Intro Video Modal
   ======================================== */

.intro-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: introFadeIn 0.3s ease;
}

.intro-modal-container {
    position: relative;
    width: auto;
    max-width: none;
    background: #0d0d0d;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
    animation: introScaleIn 0.3s ease;
}

.intro-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}

.intro-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.intro-modal-video-wrapper {
    width: 100%;
    background: #000;
    line-height: 0; /* elimina espacio inline debajo del video */
}

.intro-modal-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(85vh - 60px); /* 60px = altura del footer */
}

.intro-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 12px;
    flex-wrap: wrap;
}

.intro-modal-skip-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    cursor: pointer;
    user-select: none;
}

.intro-modal-skip-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--brand-primary);
    cursor: pointer;
}

.intro-modal-btn-close {
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.intro-modal-btn-close:hover {
    opacity: 0.85;
}

@keyframes introFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes introScaleIn {
    from { transform: scale(0.93); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

@media (max-width: 576px) {
    .intro-modal-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro-modal-btn-close {
        width: 100%;
        text-align: center;
    }
}
