.experiencia-page {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    background: #0c1929;
    color: #fff;
    overflow-x: hidden;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.exp-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--exp-navy, #0c1929) 0%, var(--exp-primary, #0d9488) 40%, var(--exp-accent, #ea580c) 100%);
    opacity: 0.95;
    z-index: 0;
}

.exp-particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 80% 70%, rgba(255,255,255,0.2), transparent);
    animation: drift 20s linear infinite;
}

@keyframes drift {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.exp-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.2s;
}

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

.exp-logo-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.exp-logo-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(13,148,136,0.5), transparent 70%);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.exp-logo {
    width: min(280px, 70vw);
    height: auto;
    max-height: 280px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

.exp-logo-wrap:active .exp-logo {
    transform: scale(0.96);
}

.exp-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.exp-sub {
    opacity: 0.85;
    margin-bottom: 2rem;
}

.exp-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: 100%;
    max-width: 420px;
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    .exp-cards { grid-template-columns: 1fr; }
}

.exp-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 1rem 1.15rem;
    opacity: 0;
    animation: cardIn 0.6s ease forwards;
}

.exp-card:nth-child(1) { animation-delay: 0.5s; }
.exp-card:nth-child(2) { animation-delay: 0.7s; }
.exp-card:nth-child(3) { animation-delay: 0.9s; }

@keyframes cardIn {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

.exp-card i {
    font-size: 1.5rem;
    margin-top: 0.15rem;
    color: #5eead4;
}

.exp-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

.exp-card strong {
    font-size: 1.1rem;
}

.btn-exp-primary {
    background: linear-gradient(135deg, var(--exp-primary, #0d9488), var(--exp-navy, #0f766e));
    border: none;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.45);
}

.exp-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.exp-hint { max-width: 320px; }
