/* ===== RESET ===== */
* {
    box-sizing: border-box;
}

/* ===== CARD ===== */
.card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;

    padding: 35px;
    border-radius: 18px;

    background: rgba(15,23,42,0.95);

    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
/* ===== INPUT ===== */
.input {
    width: 100%;
    padding: 14px;

    border-radius: 10px;
    border: none;

    background: rgba(255,255,255,0.08);
    color: white;

    font-size: 14px;
}
/* ===== BOTÓN PRINCIPAL ===== */
.btn-primary {
    width: 100%;
    padding: 14px;

    border-radius: 10px;
    border: none;

    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;

    font-weight: 600;
    font-size: 15px;

    cursor: pointer;
}
/* ===== BOTÓN SECUNDARIO ===== */
.btn-secondary {
    width: 100%;
    padding: 14px;

    border-radius: 10px;

    background: transparent;
    color: #e2e8f0;

    border: 1px solid rgba(255,255,255,0.15);

    text-align: center;
    display: block;
    text-decoration: none;

    font-size: 14px;
}
.error-box {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #fca5a5;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
}
.input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.4);
}
.input,
.btn-primary,
.btn-secondary {
    transition: all 0.2s ease;
}
h2 {
    letter-spacing: 0.5px;
}
/* HERO */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    min-height: 70vh;
    padding: 40px 20px;
}

.hero-content {
    max-width: 900px;
}

/* TITULO */
.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.hero h1 span {
    color: #3b82f6;
}

/* SUBTEXTO */
.hero p {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.8;
}

/* BOTONES */
.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* FEATURES */
.features {
    margin-top: 40px;
    text-align: center;
}

.feature {
    margin: 8px 0;
    opacity: 0.85;
}
.hero-content {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary, .btn-secondary {
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(29,78,216,0.3);
}

.btn-secondary:hover {
    transform: translateY(-1px);
}
.hero-trust {
    margin-top: 20px;
    font-size: 14px;
    color: #94a3b8;
}

.hero-trust {
    margin-top: 20px;
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-content {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary, .btn-secondary {
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(29,78,216,0.3);
}

.btn-secondary:hover {
    transform: translateY(-1px);
}
/* HERO */

.hero {
    padding: 80px 20px 40px 20px;
    text-align: center;
}
.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #3b82f6;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.hero-trust {
    margin-bottom: 30px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.08);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
}
/* HERO BIEN HECHO */

.hero {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #3b82f6;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.hero-trust {
    margin-bottom: 25px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.08);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
}
/* =======================================================
   ENTERPRISE UI SYSTEM
======================================================= */

.enterprise-shell{

    width:100%;
    max-width:1500px;

    margin:40px auto;

    padding:0 24px;
}

.enterprise-hero{

    background:
        linear-gradient(
            135deg,
            rgba(15,23,42,.96),
            rgba(30,41,59,.96)
        );

    border:1px solid rgba(255,255,255,.06);

    border-radius:30px;

    padding:42px;

    overflow:hidden;

    position:relative;

    margin-bottom:28px;
}

.enterprise-label{

    color:#60a5fa;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:14px;
}

.enterprise-title{

    font-size:54px;

    font-weight:800;

    line-height:1.05;

    margin-bottom:16px;

    color:white;
}

.enterprise-subtitle{

    max-width:900px;

    color:#94a3b8;

    line-height:1.7;

    font-size:17px;
}

.enterprise-nav{

    display:flex;

    gap:18px;

    margin-top:24px;
}

.enterprise-nav a{

    color:#cbd5e1;

    text-decoration:none;

    font-size:14px;

    transition:.2s;
}

.enterprise-nav a:hover{

    color:white;
}

.enterprise-stats{

    display:grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap:20px;

    margin-top:36px;
}

.enterprise-stat{

    background:rgba(255,255,255,.04);

    border-radius:22px;

    padding:24px;

    border:1px solid rgba(255,255,255,.05);
}

.enterprise-stat-label{

    color:#94a3b8;

    font-size:13px;

    margin-bottom:12px;
}

.enterprise-stat-value{

    font-size:44px;

    font-weight:800;

    color:white;
}

.enterprise-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:24px;

    align-items:start;
}

.enterprise-stack{

    display:flex;

    flex-direction:column;

    gap:24px;
}

.enterprise-card{

    background:rgba(15,23,42,.92);

    border:1px solid rgba(255,255,255,.05);

    border-radius:26px;

    padding:28px;
}

.enterprise-card h2{

    color:white;

    margin-bottom:22px;

    font-size:24px;
}

.enterprise-item{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.04);

    border-radius:18px;

    padding:20px;

    margin-bottom:16px;
}

.enterprise-item-title{

    color:white;

    font-size:18px;

    font-weight:700;

    margin-bottom:8px;
}

.enterprise-item-meta{

    color:#94a3b8;

    font-size:14px;
}

.enterprise-member{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255,255,255,.03);

    border-radius:16px;

    padding:18px;

    margin-bottom:14px;
}

.enterprise-badge{

    background:#2563eb;

    color:white;

    border-radius:999px;

    padding:6px 12px;

    font-size:12px;

    font-weight:700;
}

.enterprise-form{

    display:flex;

    flex-direction:column;

    gap:16px;
}

.enterprise-form input,
.enterprise-form select{

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    color:white;

    padding:16px;

    border-radius:14px;

    width:100%;
}

.enterprise-button{

    background:#2563eb;

    border:none;

    color:white;

    border-radius:14px;

    padding:16px;

    font-weight:700;

    cursor:pointer;

    transition:.2s;
}

.enterprise-button:hover{

    background:#1d4ed8;
}
