:root {
  --primary-blue: #0d6efd;
  --dark-bg: #010819;
  --text-white: #ffffff;
  --text-gray: #a7abb6;
  --card-bg-start: #1a2a55;
  --card-bg-end: #05102f;
}
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--dark-bg);
  color: var(--text-white);
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
h1, h2, h3, p {
  margin: 0;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-padding {
  padding: 60px 0;
}
.btn {
  padding: 6px 15px;
  border-radius: 16px;
}
.btn-ghost {
  font-size: 14px;
  border: solid 1px rgba(255, 255, 255, 0.408);
  color: var(--text-white);
  text-decoration: none;
}
.btn-ghost:hover {
  background-color: var(--card-bg-start);
  border: solid 1px var(--card-bg-start);
}
.btn-primary {
  font-size: 14px;
  background-color: var(--primary-blue);
  color: var(--text-white);
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-primary:hover {
  background-color: #0243a5;
}

/* CSS para la sección : Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  animation: fade-in-fwd 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo {
  display: flex;
  justify-content: center;
  width: 30%;
}
.logo img {
  height: 35px;
}
.main-nav {
  display: flex;
  gap: 40px;
}
.nav-link {
  width: 60%;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.content-nav {
  width: 70%;
    display: flex;
    justify-content: space-around;
}
.nav-link:hover {
  color: var(--primary-blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 30%;
  justify-content: center;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
}

/* CSS para la sección : Hero */
#section-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/bg-hero.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  z-index: -1;
  pointer-events: none;
  animation: fade-in-top 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-content {
  max-width: 1100px;
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.1);
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0px 0px 20px 0px rgba(55, 111, 255, 0.3);
  animation: scale-in-center 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.badge-text {
  color: #ffb020;
  font-weight: 600;
  font-size: 14px;
}
.hero-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: scale-in-center 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: scale-in-center 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(83, 121, 219, 0.05);
  border: 1px solid rgba(83, 121, 219, 0.1);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: white;
}
.feature-item5 {
  animation: slide-in-left 0.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.feature-item4 {
  animation: slide-in-left 1.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.feature-item3 {
  animation: slide-in-left 2.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.feature-item2 {
  animation: slide-in-left 3.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.feature-item1 {
  animation: slide-in-left 4.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.feature-item img {
  width: 20px;
  height: 20px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  animation: scale-in-center 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.btn-lg {
  padding: 12px 32px;
  font-size: 16px;
}
.hero-visuals {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  z-index: 2;
}
.social-icon {
  width: 45px;
  height: 45px;
  background-color: #1a2a55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease-in;
  border: solid 1px #1a2a55;
  animation: scale-in-center 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.social-icon:hover {
  border: solid 1px #0d6dfd56;
}
.dashboard-preview {
  position: relative;
  width: 100%;
  max-width: 900px;
  animation: scale-in-center 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;

}
.dashboard-glow-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.dashboard-glow {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  max-width: none;
  z-index: -1;
  opacity: 0.6;
}
.dashboard-image-container {
  background-color: #1a2a55;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0px 0px 40px 0px rgba(13, 110, 253, 0.3);
  width: 100%;
}
.dashboard-image-container img {
  border-radius: 10px;
  width: 100%;
}

/* CSS para la sección : Caracteristicas */
#section-features {
  padding: 80px 0;
  background: linear-gradient(182deg, var(--bg-dark-v2, rgba(1, 8, 25, 0.20)) 13%, rgba(5, 56, 195, 0.20) 49.24%, var(--bg-dark-v2, rgba(1, 8, 25, 0.20)) 95.44%);
}
.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.1);
  border-radius: 50px;
  color: #f5f5f5;
  margin-bottom: 20px;
}
.section-desc {
  max-width: 800px;
  color: var(--text-gray);
  line-height: 1.6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: linear-gradient(135deg, #1a2a55 0%, #05102f 100%);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.large-card {
  grid-column: span 1;
}
.feature-image-card {
  grid-column: span 2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-image-card .bg-card-category {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}
.feature-image-card .logo-category {
  width: 250px;
  object-fit: cover;
  z-index: 2;
}

.card-content, .card-content-row {
  display: flex;
  gap: 20px;
}
.card-content {
  flex-direction: column;
  align-items: flex-start;
}
.card-content-row {
  flex-direction: row;
  align-items: center;
}
.icon-circle {
  width: 55px;
  height: 55px;
  background-color: #05102f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.text-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}
.text-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}


/* CSS para la sección : como funciona */
#section-how-it-works {
  padding: 100px 0;
  overflow: hidden;
}
.how-it-works-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.phone-column {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.bg-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 150%;
  max-width: none;
  opacity: 0.5;
}
.phone-composition {
  position: relative;
}
.phone-frame {
  position: relative;
  z-index: 1;
}
.phone-mockup {
  position: relative;
  z-index: 2;
}
.phone-screen {
  position: absolute;
  top: 10px;
  left: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 20px);
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}
.phone-screen img {
  height: 100%;
  background: rgb(157, 157, 157) 80%;
}
.benefits-card {
  position: absolute;
  bottom: 80px;
  right: -40px;
  background-color: #010920;
  border-radius: 25px;
  padding: 30px;
  width: 380px;
  z-index: 3;
  box-shadow: 0px 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}
.benefits-title {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 20px;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-gray);
}
.steps-column {
  flex: 1;
}
.steps-header {
  margin-bottom: 40px;
}
.steps-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.steps-header p {
  color: #f0f0f0;
  font-size: 16px;
  line-height: 1.5;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #05102f;
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}
.step-icon {
  width: 50px;
  height: 50px;
}
.step-content h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-gray);
}

/* CSS for section section:Pricing */
.pricing-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section-title {
  font-size: 48px;
  color: var(--text-white);
}
.section-subtitle-wrapper {
  max-width: 600px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.5;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-card {
  background-color: #05102f34;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}
.pricing-card.highlight {
  background-color: #05102f; /* Same base, but distinguished by badge */
}
.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0px 0px 26px 2px rgba(13, 110, 253, 0.31);
  white-space: nowrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-name {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 18px;
}
.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.price {
  font-size: 32px;
  font-weight: 700;
  color: #f8fafc;
}
.period {
  font-size: 16px;
  color: var(--text-gray);
}
.elite-price {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.price-prefix {
  font-size: 14px;
  color: var(--text-gray);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.capacity {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 5px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #858488;
  font-size: 16px;
  line-height: 1.4;
}
.pricing-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  color: var(--text-gray);
}
.tolerance-note {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-wrapper {
  background-color: #1a2a55;
  border: 1px solid #212121;
  border-radius: 5px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-label {
  color: white;
  font-weight: 600;
}
.note-text {
  text-align: center;
  max-width: 500px;
  font-size: 14px;
}
.btn-pricing {
  padding: 12px;
}

/* CSS for section section:Testimonials */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}
.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
  text-align: center;
}
.badge-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #0d6efd;
  border-radius: 32px;
  padding: 5px 15px;
  backdrop-filter: blur(1px);
}
.badge-text {
  font-size: 14px;
  background: linear-gradient(90deg, #0d6efd 0%, #ba9cff 50%, #ffb020 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
}
.testimonials-title {
  font-size: 48px;
  font-weight: 700;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.user-info {
  display: flex;
  flex-direction: column;
}
.user-name {
  color: #f4f0ff;
  font-weight: 600;
  font-size: 16px;
}
.user-handle {
  color: rgba(239, 237, 253, 0.6);
  font-size: 14px;
}
.testimonial-content p {
  color: #f4f0ff;
  font-size: 16px;
  line-height: 1.6;
}
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 520px;
}
.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: max-content;
}
.testimonials-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  height: 100%;
  align-content: center;
}
.testimonial-card {
  width: 360px;
  max-height: 220px;
  flex-shrink: 0;
}
.testimonials-group:nth-child(even) {
  transform: translatex(100px);
}
.testimonials-carousel::before,
.testimonials-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.testimonials-carousel::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(5, 8, 20, 1) 0%,
    rgba(5, 8, 20, 0.85) 40%,
    rgba(5, 8, 20, 0) 100%
  );
}
.testimonials-carousel::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(5, 8, 20, 1) 0%,
    rgba(5, 8, 20, 0.85) 40%,
    rgba(5, 8, 20, 0) 100%
  );
}
.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}

/* CSS for section section:ContactFooter */
.contact-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: hidden;
}
.contact-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.bg-shape {
  position: absolute;
}
.shape-1 { 
  bottom: 0; 
  left: 0; 
  width: 100%; 
}
.shape-2 { 
  bottom: 0; 
  left: 0; 
  width: 100%; 
}
.bg-shape-group { 
  position: absolute; 
  bottom: 0; 
  right: 0; 
  width: 50%; 
  height: 100%; 
  opacity: 0.6; 
}
.shape-3 { 
  bottom: 0; 
  right: 0; 
  opacity: 0.2; 
}
.shape-4 { 
  bottom: 0; 
  right: 0; 
  opacity: 0.4; 
}
.contact-container {
  position: relative;
  z-index: 1;
}
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
.contact-text {
  flex: 1;
  max-width: 500px;
}
.contact-title {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-desc {
  font-size: 18px;
  color: #787b81;
  line-height: 1.6;
}
.contact-form-wrapper {
  flex: 1;
  max-width: 550px;
}
.contact-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 80px 105px rgba(51, 51, 51, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  color: #0a142f;
  font-size: 14px;
  font-weight: 500;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(10, 20, 47, 0.3);
  border-radius: 5px;
  font-size: 16px;
  color: #0a142f;
  background: white;
}
.form-textarea {
  height: 120px;
  resize: vertical;
}
.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.form-checkbox {
  width: 20px;
  height: 20px;
  border: 1.5px solid #a4a4a4;
  border-radius: 3px;
}
.checkbox-label {
  font-size: 14px;
  color: #0a142f;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copyright {
  color: white;
  font-size: 14px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social img {
  width: 40px;
  height: 40px;
}
.btn-form {
  padding: 12px;
  border: none;
}
.footer-logo img{
  width: 200px;
}

/**
 * ----------------------------------------
 * animation fade-in-fwd
 * ----------------------------------------
 */
@keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}





/* --- Responsive --- */
@media (max-width: 960px) {
  .contact-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-text {
    max-width: 100%;
    text-align: center;
  }
  
  .contact-form-wrapper {
    max-width: 100%;
  }
  
  .site-footer {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .contact-title {
    font-size: 32px;
  }
  .contact-form {
    padding: 24px;
  }
}

/* header */ 
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-features {
    gap: 10px;
  }
  .hidden-mobile {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-lg {
    width: 100%;
  }
}

/* caracteristicas */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .large-card, .feature-image-card {
    grid-column: span 1;
  }
  .card-content-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* como funciona */
@media (max-width: 992px) {
  .how-it-works-container {
    flex-direction: column;
  }
  .benefits-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -50px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* precios */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 32px;
  }
}

/* Menu mobile */

/* Prevenir desbordamiento global */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

@media (max-width: 768px) {
  /* Ocultar navegación normal y botones de la barra superior */
  .content-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;

    /* Posicionamiento en toda la pantalla */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 14, 20, 0.98); /* Fondo oscuro casi opaco */
    
    /* Estado inicial (escondido a la derecha) */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
  }

  /* Cuando abrimos el menú */
  .content-nav.active {
    transform: translateX(0);
  }

  /* Ajuste de los elementos internos en móvil */
  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .nav-link {
    font-size: 24px;
    width: auto;
    color: white;
  }

  .header-actions {
    display: flex;
    flex-direction: column;
    width: 80%; /* Botones anchos en móvil */
    gap: 15px;
  }

  .header-actions .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .mobile-menu-btn {
    display: flex; /* Mostrar hamburguesa */
    z-index: 999;
    position: relative;
  }
}

.hero-badge {
  box-shadow: 0px 0px 20px 0px rgba(55, 111, 255, 0.3);
}
.dashboard-image-container {
  box-shadow: 0px 0px 40px 0px rgba(13, 110, 253, 0.3);
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-hero.png"); /* tu glow o efecto de luz */
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  z-index: -1;
  pointer-events: none;
  animation: fade-in-top 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.form-success-message {
  background: #0f766e; /* verde elegante SaaS */
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.25);
}
