.tickets { background: #fff; }

.socios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.socio-card {
    border-radius: var(--radius);
    padding: 42px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}
.socio-card.s-orange {
    background: linear-gradient(160deg, var(--orange) 0%, var(--orange2) 100%);
    box-shadow: 0 10px 40px rgba(255,123,0,0.25);
}
.socio-card.s-purple {
    background: linear-gradient(160deg, var(--purple) 0%, var(--purple2) 100%);
    box-shadow: 0 10px 40px rgba(138,43,226,0.25);
}
.socio-card.s-blue {
    background: linear-gradient(160deg, var(--blue) 0%, #3a7bd5 100%);
    box-shadow: 0 10px 40px rgba(26,77,143,0.25);
}

.socio-card::before {
    content: '';
    position: absolute;
    top: -60%; left: -60%;
    width: 220%; height: 220%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}
.socio-card:hover::before { opacity: 1; animation: spinGlow 4s linear infinite; }
@keyframes spinGlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.socio-card:hover { transform: translateY(-12px) scale(1.04); }
.socio-card.s-orange:hover { box-shadow: 0 24px 60px rgba(255,123,0,0.4); }
.socio-card.s-purple:hover { box-shadow: 0 24px 60px rgba(138,43,226,0.4); }
.socio-card.s-blue:hover   { box-shadow: 0 24px 60px rgba(26,77,143,0.35); }

.socio-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    position: relative; z-index: 1;
}
.socio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 14px;
    position: relative; z-index: 1;
}
.socio-body {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin-bottom: 18px;
    position: relative; z-index: 1;
}
.socio-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 2px;
    margin: 12px 0 20px;
    position: relative; z-index: 1;
}
.socio-btn {
    display: inline-block;
    padding: 10px 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(0,0,0,0.18);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative; z-index: 1;
}
.socio-btn:hover {
    background: rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.7);
    transform: scale(1.05);
}
