/* Variables CSS con colores corporativos DataEnergy */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
:root {
  /* Colores corporativos DataEnergy */
  --primary-gold: #ffd700;
  --primary-blue: #0070c0;
  --accent-orange: #f24e2b;
  --accent-teal: #02c3a8;
  --accent-green: #07f46c;
  --dark-red: #820000;
  --success-green: #008000;
  --light-green: #c5e0b4;
  --bright-red: #ff0000;
  --neutral-gray: #767171;
  --dark-slate: #1e293b;
  --dark-green-gray: #494e47;
  --pure-black: #000000;
  --pure-white: #ffffff;

  /* Colores semánticos */
  --background: var(--pure-white);
  --foreground: var(--pure-black);
  --muted: #f8fafc;
  --muted-foreground: var(--neutral-gray);
  --border: #e2e8f0;
  --input: var(--pure-white);
  --card: var(--pure-white);
  --card-foreground: var(--pure-black);

  /* Tipografía */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Espaciado */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 12px;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Clean header styling for programa de lanzamiento page */
.diagnostico-header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  border-bottom: 2px solid #ffd700;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 80px;
}

.nav-brand .logo {
  height: 65px !important;
  width: auto !important;
  filter: brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(1000%) hue-rotate(15deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  margin-left: 0;
  margin-right: 0;
}

.nav-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 20px;
  border-radius: 6px;
  background: transparent;
  border: none;
  margin: 0 8px;
  text-align: center;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  line-height: 1.3;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(255, 215, 0, 0.15);
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
}

.nav-link.cta-nav {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  border: none;
  min-width: 160px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 8px;
  padding: 12px 24px;
}

.nav-link.cta-nav:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* AQUÍ AGREGAR EL CSS BASE DEL HAMBURGUESA */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 35px;
  height: 30px;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  opacity: 1;
}


/* Hero section styling for programa de lanzamiento */
.hero-diagnostico {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("dataenergy-hero-visualization.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--pure-white);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-diagnostico::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.value-proposition {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--primary-gold);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.value-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.value-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.value-free-emphasis {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #e6c200 100%);
  color: var(--pure-black);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #e6c200 0%, var(--primary-gold) 100%);
}

/* Transparency section styling */
.transparency-section {
  padding: var(--section-padding);
  background: var(--muted);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.transparency-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.transparency-card-horizontal {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 112, 192, 0.1) 100%);
  border: 2px solid var(--primary-gold);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.transparency-card-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-blue) 50%, var(--accent-orange) 100%);
}

.transparency-card-horizontal:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
  border-color: var(--accent-orange);
}

.transparency-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.card-content {
  text-align: center;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
  text-wrap: balance;
}

.card-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1rem;
}

/* Process section styling */
.process-section {
  padding: var(--section-padding);
  background: var(--background);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-gold);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: var(--pure-black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* CTA final section styling */
.cta-final {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--dark-slate) 0%, var(--pure-black) 100%);
  color: var(--pure-white);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-wrap: balance;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  text-wrap: pretty;
}

.cta-final-button {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-orange) 100%);
  color: var(--pure-black);
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-final-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.cta-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Footer styling */
.footer {
  background: var(--dark-slate);
  color: var(--pure-white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}

.footer-column h4 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Estilos para formularios */
.form-main {
  margin-top: 80px;
  padding: 40px 20px;
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-container {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h1 {
  color: var(--foreground);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-wrap: balance;
}

.form-header p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Animaciones */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ESTILOS DEL FORMULARIO - RESTAURADOS */
.progress-section {
  margin-bottom: 30px;
}

.progress-bar {
  background: #e2e8f0;
  border-radius: 10px;
  height: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-orange) 100%);
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-text {
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.benefit-card {
  background: var(--muted);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.benefit-card h4 {
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  height: 48px;
  transition: all 0.3s ease;
  background: var(--input);
  color: var(--foreground);
}

.form-group textarea {
  height: auto;
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 192, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.confirmations {
  margin-bottom: 40px;
}

.confirmations h4 {
  color: var(--foreground);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.confirmation-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--muted);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.confirmation-item input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-gold);
}

.confirmation-item label {
  color: var(--foreground);
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
}

.submit-section {
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-orange) 100%);
  color: var(--pure-black);
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* También corregir el logo */
.nav-brand .logo {
  height: 65px !important;
  width: auto !important;
  filter: brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(1000%) hue-rotate(15deg);
}

/* RESPONSIVE DESIGN */
/* === RESPONSIVE DESIGN COMPLETO === */
@media (max-width: 768px) {
  
  /* BOTÓN HAMBURGUESA - MOSTRAR Y POSICIONAR */
  .nav-toggle {
    display: flex !important;
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1001 !important;
    flex-direction: column !important;
    width: 35px !important;
    height: 30px !important;
    justify-content: space-between !important;
    padding: 5px !important;
  }

  /* LÍNEAS DEL HAMBURGUESA - ASEGURAR VISIBILIDAD */
  .nav-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #ffd700 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    transform-origin: center !important;
    opacity: 1 !important;
    margin: 0 !important;
  }

  /* ANIMACIONES DEL HAMBURGUESA ACTIVO */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }
  
  /* MENÚ DESPLEGABLE - CONFIGURACIÓN COMPLETA */
  .nav-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    min-height: 200px !important;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    flex-direction: column !important;
    -ms-flex-direction: column !important;
    -webkit-flex-direction: column !important;
    padding: 25px 0 !important;
    margin: 0 !important;
    transform: translateY(-100%) !important;
    -ms-transform: translateY(-100%) !important;
    -webkit-transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
    border-top: 2px solid #ffd700 !important;
    z-index: 999 !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
  }

  /* MENÚ ACTIVO - VISIBLE */
  .nav-menu.active {
    transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* ENLACES DEL MENÚ - ESPACIADO ÓPTIMO */
  .nav-link {
    margin: 8px 20px !important;
    padding: 22px 20px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    min-width: auto !important;
    width: calc(100% - 40px) !important;
    text-align: center !important;
    display: block !important;
    opacity: 1 !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    overflow: visible !important;
    color: #ffd700 !important;
    text-decoration: none !important;
    line-height: 1.3;
  }

  /* ÚLTIMO ENLACE SIN BORDE */
  .nav-link:last-child {
    border-bottom: none !important;
    margin-bottom: 15px !important;
  }

  /* HOVER DE ENLACES */
  .nav-link:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    transform: translateX(5px) !important;
    color: #ffffff !important;
  }

  /* BOTÓN CTA ESPECIAL */
  .nav-link.cta-nav {
    margin: 20px 20px 15px 20px !important;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
    color: #000000 !important;
    font-weight: 600 !important;
    text-align: center !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
  }

  .nav-link.cta-nav:hover {
    transform: translateX(0) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
    color: #000000 !important;
  }

  /* RESTO DE ELEMENTOS RESPONSIVOS */
  .hero-content {
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
    text-align: center !important;
  }

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

  .features-grid {
    grid-template-columns: 1fr !important;
  }

  .process-steps {
    grid-template-columns: 1fr !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .trust-indicators {
    flex-direction: column !important;
    gap: var(--space-4) !important;
  }
  
    .transparency-horizontal {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .form-main {
    padding: 20px 15px;
  }

  .form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .form-header h1 {
    font-size: 1.8rem;
  }
}
/* FORZAR TAMAÑO DEL LOGO - AL FINAL DEL ARCHIVO */
img[src*="logo"], 
.logo, 
.nav-brand img, 
.nav-brand .logo,
.simple-logo,
.footer-logo {
  height: 90px !important;
  width: auto !important;
  max-height: 65px !important;
  max-width: 200px !important;
  object-fit: contain !important;
}

/* Específicamente para el header */
.diagnostico-header .logo,
.diagnostico-header img {
  height: 65px !important;
  width: auto !important;
}

/* Para el footer mantener un poco más grande */
.footer-logo {
  height: 65px !important;
}
/* HEADER SIMPLIFICADO PARA FORMULARIOS */
.simple-header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #ffd700;
}

.simple-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.simple-logo {
  height: 45px !important;
  width: auto !important;
  filter: brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(1000%) hue-rotate(15deg);
}

.btn-back-main {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-back-main:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}
/* MODAL DE ÉXITO - RESTAURADO */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--muted) 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--primary-gold);
  position: relative;
  overflow: hidden;
  animation: modalSlideIn 0.4s ease-out;
}

.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-orange) 50%, var(--primary-blue) 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success-green) 0%, var(--accent-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--pure-white);
  margin: 0 auto 30px;
  box-shadow: 0 10px 25px rgba(0, 128, 0, 0.3);
  animation: successPulse 2s infinite;
}

.modal-content h3 {
  color: var(--foreground);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-content p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  text-wrap: pretty;
}

.modal-close-btn {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-orange) 100%);
  color: var(--pure-black);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  min-width: 150px;
}

.modal-close-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-gold) 100%);
}

/* Animaciones del modal */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 128, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 128, 0, 0.5);
  }
}

/* Estilos adicionales del formulario */
.loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}