/* =========================================
   VARIABLES & ESTILOS GENERALES
   ========================================= */
:root {
  --primary: #fbbf24;
  --primary-hover: #f59e0b;
  --secondary: #ea580c; 
  --secondary-hover: #c2410c;
  --accent-blue: #5153c8;
  --dark: #0f172a; 
  --dark-light: #1e293b;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 5%;
}

.navbar.scrolled .navbar-brand {
  color: var(--dark);
}
.navbar.scrolled .navbar-links a {
  color: var(--text-main);
}
.navbar.scrolled .btn-login {
  color: var(--text-main);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

.navbar-logo {
  height: 50px;
  width: auto;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: var(--primary);
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-login {
  background: none;
  border: none;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.btn-login:hover {
  color: var(--primary);
}

.btn-signup {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-signup:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 4rem;
  background: url("bg.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  font-size: 1.05rem;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
}

/* =========================================
   SECCIONES COMPARTIDAS
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* =========================================
   CARACTERÍSTICAS (DISEÑO ASIMÉTRICO)
   ========================================= */
.features-section {
  padding: 6rem 5%;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.05), transparent 40%),
              radial-gradient(circle at bottom left, rgba(81, 83, 200, 0.03), transparent 40%);
  pointer-events: none;
}

.creative-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.8rem;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.creative-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.creative-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.creative-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.creative-card:hover::after {
  transform: scaleX(1);
}

.card-wide {
  grid-column: span 3;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.card-std {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}

.creative-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  background: rgba(251, 191, 36, 0.15);
  color: var(--primary-hover);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.creative-card:hover .creative-icon {
  transform: scale(1.1) rotate(-5deg);
}

.creative-content {
  flex: 1;
}

.creative-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.creative-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.badge-mini {
  font-size: 0.7rem;
  background: var(--accent-blue);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* =========================================
   CÓMO FUNCIONA (NUEVO DISEÑO ANIMADO)
   ========================================= */
.how-it-works-animated {
  padding: 8rem 5%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.steps-animated-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 4rem auto 0;
}

/* Línea de Flujo Animada de fondo */
.animated-flow-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 6px;
  background: linear-gradient(90deg, #e2e8f0 0%, var(--primary) 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  animation: flowGradient 3s linear infinite;
  border-radius: 10px;
  z-index: 0;
}

@keyframes flowGradient {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.steps-animated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}

/* Tarjeta del paso */
.step-card-animated {
  background: var(--white);
  border-radius: 20px;
  padding: 3.5rem 2rem 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 4px solid transparent;
}

.step-card-animated:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-top-color: var(--primary);
}

/* Número con efecto Pulse */
.step-number-pulse {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: var(--dark);
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--white);
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5);
  animation: pulseGlow 2s infinite;
  z-index: 2;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.step-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: block;
}

.step-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-weight: 700;
}

.step-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================
   BENEFICIOS ILIMITADOS (DISEÑO BENTO FANCY)
   ========================================= */
.unlimited-bento-section {
  padding: 8rem 5%;
  background-color: var(--dark); 
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.bento-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.08) 0%, rgba(15, 23, 42, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.unlimited-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.unlimited-header h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.unlimited-header p {
  font-size: 1.1rem;
  color: #94a3b8;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15); 
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

.card-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  opacity: 0.5;
}

.primary-glow {
  background: var(--primary);
  top: -50px;
  left: -50px;
}

.secondary-glow {
  background: #38bdf8; 
  bottom: -50px;
  right: -50px;
}

.accent-glow {
  background: var(--secondary);
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
}

.card-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: 32px;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-icon-large {
  width: 90px;
  height: 90px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.bento-icon-large i {
  font-size: 2.8rem;
  color: var(--primary);
}

.card-main h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.card-main p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.bento-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.card-secondary, .card-tertiary {
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-header-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.bento-icon-small {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-icon-small i {
  font-size: 1.4rem;
  color: #fff;
}

.card-secondary h3, .card-tertiary h3 {
  font-size: 1.4rem;
  color: #fff;
}

.card-secondary p, .card-tertiary p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* =========================================
   PLANES
   ========================================= */
.plans-section {
  padding: 6rem 5%;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.plan-card {
  flex: 1 1 300px;
  width: 100%;
  max-width: 350px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.plan-card.recommended {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.plan-card.recommended:hover {
  border-color: var(--secondary) !important;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 600;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.currency {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
}

.period {
  color: var(--text-muted);
  font-size: 1rem;
}

.plan-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 5px;
  min-height: 16px;
}

.features-list {
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.features-list i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* =========================================
   BOTONES
   ========================================= */
.btn-submit {
  width: 100%;
  margin-top: auto;
  padding: 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fbbf24;
  color: #78350f;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-submit:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
}

.btn-submit.btn-anual {
  background-color: #ea580c;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-submit.btn-anual:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* =========================================
   CONTACTO
   ========================================= */
.contact-section {
  padding: 6rem 5%;
  background: var(--dark);
  color: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.contact-details i {
  font-size: 1.3rem;
}

.contact-form-wrapper {
  flex: 1.2;
  min-width: 320px;
}

.modern-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  color: var(--dark);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-light);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark-light);
  color: var(--white);
  padding: 4rem 5% 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.brand-col p {
  color: #94a3b8;
  margin: 1rem 0;
  font-size: 0.95rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer-col a {
  display: flex;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
}

.dev-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.dev-link:hover {
  opacity: 0.8;
}

.brand-text {
  color: #38bdf8;
  font-weight: 700;
}

.footer-dev-logo {
  height: 24px;
  width: auto;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
  .navbar-links {
    display: none;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-stats {
    gap: 2rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .creative-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-wide, .card-std {
    grid-column: span 1;
    flex-direction: column;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .card-main {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 10rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .creative-features-grid {
    grid-template-columns: 1fr;
  }

  /* Ajustes pasos móviles */
  .steps-animated-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .animated-flow-line {
    top: 0; bottom: 0; left: 50%; right: auto;
    width: 6px; height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #e2e8f0 0%, var(--primary) 50%, #e2e8f0 100%);
    background-size: 100% 200%;
    animation: flowGradientMobile 3s linear infinite;
  }
  @keyframes flowGradientMobile {
    0% { background-position: 0 100%; }
    100% { background-position: 0 -100%; }
  }

  .unlimited-header h2 {
    font-size: 2.2rem;
  }
  .plan-card.recommended {
    transform: scale(1);
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 459px) {
  .navbar {
    flex-direction: row;
    padding: 0.8rem 5%;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
    gap: 0.3rem;
  }
  
  .navbar-logo {
    height: 35px; 
  }
  
  .navbar-actions {
    gap: 0.5rem;
  }
  
  .btn-signup {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .btn-login {
    display: none; 
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-info, 
  .contact-form-wrapper {
    min-width: 100%;
  }

  .modern-form {
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 2.1rem;
    word-break: break-word;
  }
  
  .card-main {
    padding: 2.5rem 1.5rem;
  }
}