/* ========== OTRAS ========== */
#Otras {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f4e72 0%, #5d5e59 40%, #4e1b46 100%);
    overflow: hidden;
    padding: 40px;
}

.otras-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.otras-content {
    color: #fff;
}

.otras-badge {
    margin-bottom: 20px;
}

.otras-label {
    font-size: 14px;
    letter-spacing: 4px;
    color: #c78bff;
    background: rgba(199, 139, 255, 0.15);
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid rgba(199, 139, 255, 0.3);
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
}

.otras-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 10px 0 25px;
}

.otras-title .accent {
    color: #c78bff;
    text-shadow: 0 0 30px rgba(199, 139, 255, 0.5);
}

.otras-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #d4c4e8;
    max-width: 550px;
    margin-bottom: 35px;
    font-weight: 300;
}

.otras-desc strong {
    color: #ff7ebb;
}

/* Botón */
.btn-otras {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #c78bff, #ff2a85);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 35px rgba(199, 139, 255, 0.4);
    transition: 0.35s ease;
}

.btn-otras:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(199, 139, 255, 0.6);
}

.otras-footer {
    margin-top: 40px;
}

.otras-note {
    color: #a894c4;
    font-size: 0.95rem;
    font-style: italic;
}

/* Decoración */
.otras-deco {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(199, 139, 255, 0.08);
    border: 2px solid rgba(199, 139, 255, 0.15);
}

.deco-circle.c1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
}

.deco-circle.c2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
    background: rgba(255, 42, 133, 0.05);
    border-color: rgba(255, 42, 133, 0.15);
}

.deco-circle.c3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

@keyframes float-deco {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

/* Responsive */
@media (max-width: 968px) {
    .otras-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .otras-desc {
        max-width: 100%;
    }
    .otras-deco {
        height: 200px;
    }
    .deco-circle.c1 { width: 200px; height: 200px; }
    .deco-circle.c2 { width: 150px; height: 150px; }
    .deco-circle.c3 { width: 80px; height: 80px; }
}

@media (max-width: 600px) {
    #Otras {
        padding: 20px;
    }
    .btn-otras {
        padding: 14px 30px;
        font-size: 1rem;
    }
}