
        :root {
            --geinz-purple: #6200EE;
            --geinz-dark: #1a237e;
            --bg-soft: #f4f7ff;
            --white: #ffffff;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-soft);
            padding: 20px 10px;
        }

        .contenido {
            max-width: 700px;
            margin: 0 auto;
            background: var(--white);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-radius: 24px;
            overflow: hidden;
        }

        /* --- EL HEADER PREMIUM QUE TE GUSTÓ --- */
        .header-premium {
            background: linear-gradient(135deg, var(--geinz-dark) 0%, var(--geinz-purple) 100%);
            color: white;
            padding: 50px 30px;
            text-align: center;
        }

        .header-premium p.company-name {
            color: rgba(255,255,255,0.8);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .header-premium h1 {
            color: white;
            font-weight: 800;
            font-size: 2.2rem;
            letter-spacing: -1px;
            margin-bottom: 15px;
        }

        .header-premium p.subtitle {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
            max-width: 450px;
            margin: 0 auto;
        }

        /* --- CUERPO DEL FORMULARIO --- */
        .form-body { padding: 35px; }

        .intro-card {
            background: #fff3e0;
            color: #ef6c00;
            padding: 15px 20px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            border-left: 5px solid #ff9800;
        }

        .card-step {
            background: white;
            border: 1px solid #eef0f7;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
        }

        h3 {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            color: var(--geinz-dark);
            margin-bottom: 20px;
        }

        .step-number {
            background: var(--geinz-purple);
            color: white;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: bold;
            font-size: 0.8rem;
            margin-right: 12px;
        }

        /* --- INPUTS RESPONSIVOS --- */
        .form-group { margin-bottom: 20px; }
        
        label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 8px;
            color: #444;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #eef0f7;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--geinz-purple);
            background: white;
            box-shadow: 0 0 0 4px rgba(98, 0, 238, 0.05);
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        @media (max-width: 600px) {
            .grid-2 { grid-template-columns: 1fr; }
            .header-premium h1 { font-size: 1.7rem; }
        }

        .btn-enviar {
            background: var(--geinz-purple);
            color: white;
            padding: 18px;
            border-radius: 14px;
            font-weight: 800;
            font-size: 1.1rem;
            width: 100%;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(98, 0, 238, 0.2);
            transition: 0.3s;
        }

        .btn-enviar:hover {
            background: var(--geinz-dark);
            transform: translateY(-2px);
        }

        footer {
            text-align: center;
            padding: 30px;
            color: #777;
            font-size: 0.8rem;
        }


        .toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0f0a1e;
  border: 1px solid rgba(155,100,255,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  color: white;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(123,47,190,0.4);
  max-width: 300px;
  animation: fadeIn 0.3s ease;
}

.toast.hidden {
  display: none;
}
.toast {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.toast button {
  background: linear-gradient(135deg,#7B2FBE,#C77DFF);
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 0.8rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.datos-empresa {
    margin: 20px 25px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(123, 47, 190, 0.08);
    border: 1px solid rgba(155,100,255,0.2);
    backdrop-filter: blur(12px);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* cada item */
.datos-empresa p {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* título (label) */
.datos-empresa strong {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C77DFF;
}

/* valor */
.datos-empresa p span {
    color: var(--text);
    font-weight: 500;
}

/* hover sutil */
.datos-empresa:hover {
    border-color: rgba(155,100,255,0.4);
}

/* responsive */
@media (max-width: 600px) {
    .datos-empresa {
        grid-template-columns: 1fr;
    }
}
   

/* Scrollbar elegante, negra, delgada y redondeada */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #111;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #333, #000);
    border-radius: 999px;
    border: 1px solid #111;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #444, #111);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #000 #111;
}